diff options
Diffstat (limited to 'webserver.conf')
-rw-r--r-- | webserver.conf | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/webserver.conf b/webserver.conf index 91ea90b..2036f67 100644 --- a/webserver.conf +++ b/webserver.conf @@ -1,6 +1,7 @@ <webserver> <user>www-data</user> <group>www-data</group> + <threads>10</threads> <!-- <plugin-directory><a c="d">b<e>f</e></a>/usr/lib/webserver/plugins</plugin-directory> <plugin-directory>/usr/local/lib/webserver/plugins</plugin-directory> @@ -9,14 +10,16 @@ <sites> <site> <name>antcom.de</name> - <host>antcom.de</host> + <host>lists.antcom.de</host> <path requested="/" type="files"> - <target>/var/www/antcom.de</target> + <target>/home/ernie/homepage/test</target> </path> + <!-- <path requested="/webbox" type="plugin"> <plugin>webbox</plugin> <target>/var/lib/webbox</target> </path> + --> </site> <!-- <site> @@ -31,18 +34,22 @@ <sockets> <socket> <address>127.0.0.1</address> - <port>80</port> + <port>8080</port> <protocol>http</protocol> + <certpath>/home/ernie/code/webserver/fullchain.pem</certpath> + <keypath>/home/ernie/code/webserver/privkey.pem</keypath> <!-- <site>antcom.de</site> <site>reichwein.it</site> --> </socket> + <!-- <socket> <address>127.0.0.1</address> <port>443</port> <protocol>https</protocol> </socket> + --> </sockets> </webserver> |