summaryrefslogtreecommitdiffhomepage
path: root/debian/webserver.conf
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2021-02-11 14:21:24 +0100
committerRoland Reichwein <mail@reichwein.it>2021-02-11 14:21:24 +0100
commitf4b6b3b7bb2be6ec8aa6b694d9ff39a774f01da7 (patch)
treec357981c6a5dac668b084c1fd1af0e8b3e3d9137 /debian/webserver.conf
parenta22c8c9c430505bdf951e3fd5ebb31485db729a0 (diff)
Fix default config file to deliver default web page
Diffstat (limited to 'debian/webserver.conf')
-rw-r--r--debian/webserver.conf24
1 files changed, 11 insertions, 13 deletions
diff --git a/debian/webserver.conf b/debian/webserver.conf
index 55e7246..f40e793 100644
--- a/debian/webserver.conf
+++ b/debian/webserver.conf
@@ -5,26 +5,22 @@
<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>
+ <name>localhost</name>
+ <host>localhost</host>
<path requested="/">
<plugin>static-files</plugin>
- <target>/home/ernie/homepage/test</target>
+ <target>/usr/lib/webserver/example</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>
+ <target>/var/lib/webserver/webbox</target>
<WEBBOX_NAME>Testbox1</WEBBOX_NAME>
- <WEBBOX_READONLY>1</WEBBOX_READONLY>
+ <WEBBOX_READONLY>0</WEBBOX_READONLY>
</path>
- <certpath>/home/ernie/code/webserver/fullchain.pem</certpath>
- <keypath>/home/ernie/code/webserver/privkey.pem</keypath>
+ <!--
+ <certpath>/etc/letsencrypt/live/my-site/fullchain.pem</certpath>
+ <keypath>/etc/letsencrypt/live/my-site/privkey.pem</keypath>
+ -->
</site>
</sites>
<sockets>
@@ -38,6 +34,7 @@
<port>80</port>
<protocol>http</protocol>
</socket>
+ <!--
<socket>
<address>127.0.0.1</address>
<port>443</port>
@@ -48,6 +45,7 @@
<port>443</port>
<protocol>https</protocol>
</socket>
+ -->
</sockets>
</webserver>