diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-16 21:28:01 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-16 21:28:01 +0100 |
commit | 7186f5cc9f502cbdaf1245a2820a7dfb434f4e49 (patch) | |
tree | 7fbf10131925cfe399063c8e923240d1afadd42a /module/config | |
parent | Fixed Hotfile (diff) | |
download | pyload-7186f5cc9f502cbdaf1245a2820a7dfb434f4e49.tar.xz |
core ssl fix, nginx support, https for lighttpd and nginx
Diffstat (limited to 'module/config')
-rw-r--r-- | module/config/core_default.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/config/core_default.xml b/module/config/core_default.xml index 4142efd2f..e21576ead 100644 --- a/module/config/core_default.xml +++ b/module/config/core_default.xml @@ -8,12 +8,13 @@ </remote> <ssl name="SSL"> <activated type="bool" name="Activated">False</activated> - <cert type="str" name="Remote Port">ssl.srt</cert> - <key type="str" name="Remote Port">ssl.key</key> + <cert type="str" name="SSL Certificate">ssl.crt</cert> + <key type="str" name="SSL Key">ssl.key</key> </ssl> <webinterface name="Webinterface"> <activated type="bool" name="Activated">True</activated> - <lighttpd type="bool" name="Use Lighttpd">False</lighttpd> + <server type="builtin;lighttpd;nginx;fastcgi" name="Server">builtin</server> + <https type="bool" name="Use HTTPS">False</https> <host type="ip" name="IP">0.0.0.0</host> <port type="int" name="Port">8001</port> <template type="str" name="Template">default</template> |