From: Sergey Ponomarev Date: Sat, 4 Oct 2025 08:12:22 +0000 (+0300) Subject: luci-app-acme: validation_method options: add challenge type code HTTP-01 and DNS-01 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=09cef4b6730e7f947e944c7e91771e5115aa7efe;p=project%2Fluci.git luci-app-acme: validation_method options: add challenge type code HTTP-01 and DNS-01 Signed-off-by: Sergey Ponomarev --- diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js index 2c7f1032c9..df23ae9841 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme/acme.js @@ -91,9 +91,9 @@ return view.extend({ '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 Challenge Validation')); - o.value('dns', _('DNS Challenge Validation')); + o.value('standalone', 'HTTP-01' + _('Standalone')); + o.value('webroot', 'HTTP-01' + _('Webroot Challenge Validation')); + o.value('dns', 'DNS-01 ' + _('DNS Challenge Validation')); o.default = 'standalone'; if (!hasDnsApi) {