diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-07 22:36:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-07 22:36:39 +0200 |
commit | 9ae5fdae96c776fa3bc88c9ea659b9f9d3318813 (patch) | |
tree | 817b2798b96cb339c4b504d16bf350507a5f2cbd /pyload/config | |
parent | [Lib] send2trash (diff) | |
download | pyload-9ae5fdae96c776fa3bc88c9ea659b9f9d3318813.tar.xz |
[config] webinterface -> webui
Diffstat (limited to 'pyload/config')
-rw-r--r-- | pyload/config/Setup.py | 8 | ||||
-rw-r--r-- | pyload/config/default.conf | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pyload/config/Setup.py b/pyload/config/Setup.py index 081184652..7f5c0b0ed 100644 --- a/pyload/config/Setup.py +++ b/pyload/config/Setup.py @@ -326,8 +326,8 @@ class SetupAssistant(object): print print _("Listen address, if you use 127.0.0.1 or localhost, the webinterface will only accessible locally.") - self.config.set("webinterface", "host", self.ask(_("Address"), "0.0.0.0")) - self.config.set("webinterface", "port", self.ask(_("Port"), "8000")) + self.config.set("webui", "host", self.ask(_("Address"), "0.0.0.0")) + self.config.set("webui", "port", self.ask(_("Port"), "8000")) print print _("pyLoad offers several server backends, now following a short explanation.") print "- auto:", _("Automatically choose the best webserver for your platform.") @@ -347,7 +347,7 @@ class SetupAssistant(object): else: servers = ["auto", "builtin", "threaded", "fastcgi", "lightweight"] - self.config.set("webinterface", "server", self.ask(_("Choose webserver"), "auto", servers)) + self.config.set("webui", "server", self.ask(_("Choose webserver"), "auto", servers)) def conf_ssl(self): @@ -363,7 +363,7 @@ class SetupAssistant(object): ssl = self.ask(_("Activate SSL?"), self.yes, bool=True) self.config.set("remote", "ssl", ssl) - self.config.set("webinterface", "ssl", ssl) + self.config.set("webui", "ssl", ssl) def set_user(self): diff --git a/pyload/config/default.conf b/pyload/config/default.conf index cfbd25968..d4b3fd493 100644 --- a/pyload/config/default.conf +++ b/pyload/config/default.conf @@ -9,7 +9,7 @@ ssl - "SSL": bool activated : "Activated"= False file cert : "SSL Certificate" = ssl.crt file key : "SSL Key" = ssl.key -webinterface - "Web UI": +webui - "Web UI": bool activated : "Activated" = True builtin;threaded;fastcgi;lightweight server : "Server" = builtin bool https : "Use HTTPS" = False |