summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJannis Pinter <jannis+openwrt@pinterjann.is>2020-10-20 08:02:32 +0200
committerJannis Pinter <jannis+openwrt@pinterjann.is>2020-10-20 08:02:32 +0200
commit45b65c76ff03a68696c94fe84807252f9cae2e7f (patch)
tree131faa6aaad6fe2e8fbafa765b3bf8e163588867 /applications
parent028873054ba3b3d503901e26631ddaa0a1154367 (diff)
luci-app-acme: Remove services tab
Signed-off-by: Jannis Pinter <jannis+openwrt@pinterjann.is>
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js5
1 files changed, 2 insertions, 3 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 16e264722..6901a4ac0 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
@@ -44,7 +44,6 @@ return view.extend({
s.addremove = true;
o = s.tab("general", _("General Settings"));
- o = s.tab("services", _("Services"));
o = s.tab("challenge", _("Challenge Validation"));
o = s.tab("advanced", _('Advanced Settings'));
@@ -73,7 +72,7 @@ return view.extend({
o.datatype = "list(string)";
if (stats[1].type === 'file') {
- o = s.taboption('services', form.Flag, "update_uhttpd", _("Use for uhttpd"),
+ o = s.taboption('general', form.Flag, "update_uhttpd", _("Use for uhttpd"),
_("Update the uhttpd config with this certificate once issued " +
"(only select this for one certificate). " +
"Is also available luci-app-uhttpd to configure uhttpd form the LuCI interface."));
@@ -81,7 +80,7 @@ return view.extend({
}
if (stats[0].type === 'file') {
- o = s.taboption('services', form.Flag, "update_nginx", _("Use for nginx"),
+ o = s.taboption('general', form.Flag, "update_nginx", _("Use for nginx"),
_("Update the nginx config with this certificate once issued " +
"(only select this for one certificate). " +
"Nginx must support ssl, if not it won't start as it needs to be " +