From 09cef4b6730e7f947e944c7e91771e5115aa7efe Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sat, 4 Oct 2025 11:12:22 +0300 Subject: [PATCH] luci-app-acme: validation_method options: add challenge type code HTTP-01 and DNS-01 Signed-off-by: Sergey Ponomarev --- .../htdocs/luci-static/resources/view/acme/acme.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) { -- 2.30.2