diff options
author | Jannis Pinter <jannis+openwrt@pinterjann.is> | 2020-10-20 08:17:35 +0200 |
---|---|---|
committer | Jannis Pinter <jannis+openwrt@pinterjann.is> | 2020-10-20 08:17:35 +0200 |
commit | 09cfbb34a8935c159325ef4935219d2b112a2150 (patch) | |
tree | ae3c1a55fa50f6aca252b39aad696380b89ce9c9 | |
parent | 45b65c76ff03a68696c94fe84807252f9cae2e7f (diff) |
luci-app-acme: Add descriptive text to validation method
Signed-off-by: Jannis Pinter <jannis+openwrt@pinterjann.is>
-rw-r--r-- | applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 6901a4ac0..0899b768f 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -88,7 +88,10 @@ return view.extend({ o.rmempty = false; } - o = s.taboption('challenge', form.ListValue, "validation_method", _("Validation method")); + o = s.taboption('challenge', form.ListValue, "validation_method", _("Validation method"), + _("Standalone mode will use the built-in webserver of acme.sh to issue a certificate. " + + "Webroot mode will use an existing webserver to issue a certificate. " + + "DNS mode will allow you to use the DNS API of your DNS provider to issue a certificate.")); o.value("standalone", _("Standalone")); o.value("webroot", _("Webroot")); o.value("dns", _("DNS")); |