diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/webserver.conf | 53 | ||||
| -rw-r--r-- | debian/webserver.install | 1 | 
2 files changed, 54 insertions, 0 deletions
diff --git a/debian/webserver.conf b/debian/webserver.conf new file mode 100644 index 0000000..55e7246 --- /dev/null +++ b/debian/webserver.conf @@ -0,0 +1,53 @@ +<webserver> + <user>www-data</user> + <group>www-data</group> + <threads>10</threads> + <plugin-directory>/usr/lib/webserver/plugins</plugin-directory> + <sites> +  <site> +   <name>antcom.de</name> +   <host>lists.antcom.de</host> +   <host>antcom.de</host> +   <host>www.antcom.de</host> +   <path requested="/"> +    <plugin>static-files</plugin> +    <target>/home/ernie/homepage/test</target> +   </path> +   <path requested="/webbox"> +    <plugin>static-files</plugin> +    <target>/home/ernie/code/webserver/plugins/webbox/html</target> +   </path> +   <path requested="/webbox/bin"> +    <plugin>webbox</plugin> +    <target>/home/ernie/testbox</target> +    <WEBBOX_NAME>Testbox1</WEBBOX_NAME> +    <WEBBOX_READONLY>1</WEBBOX_READONLY> +   </path> +   <certpath>/home/ernie/code/webserver/fullchain.pem</certpath> +   <keypath>/home/ernie/code/webserver/privkey.pem</keypath> +  </site> + </sites> + <sockets> +  <socket> +   <address>127.0.0.1</address> +   <port>80</port> +   <protocol>http</protocol> +  </socket> +  <socket> +   <address>::1</address> +   <port>80</port> +   <protocol>http</protocol> +  </socket> +  <socket> +   <address>127.0.0.1</address> +   <port>443</port> +   <protocol>https</protocol> +  </socket> +  <socket> +   <address>::1</address> +   <port>443</port> +   <protocol>https</protocol> +  </socket> + </sockets> +</webserver> + diff --git a/debian/webserver.install b/debian/webserver.install new file mode 100644 index 0000000..b4997f3 --- /dev/null +++ b/debian/webserver.install @@ -0,0 +1 @@ +debian/webserver.conf etc  | 
