luci-app-acme: Add descriptive text to validation method
authorJannis Pinter <jannis+openwrt@pinterjann.is>
Tue, 20 Oct 2020 06:17:35 +0000 (08:17 +0200)
committerJannis Pinter <jannis+openwrt@pinterjann.is>
Tue, 20 Oct 2020 06:17:35 +0000 (08:17 +0200)
Signed-off-by: Jannis Pinter <jannis+openwrt@pinterjann.is>
applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js

index 6901a4ac03a24ad6822553f82282ff092f2006ef..0899b768f9b08ba12018bf4bd72ef47f8c10b213 100644 (file)
@@ -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"));