summaryrefslogtreecommitdiffhomepage
path: root/debian
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-21 18:57:11 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-21 18:57:11 +0200
commitef7ed9034bebe80a429112930ab0481c8aa66c95 (patch)
treefaf6d962cc3b33587122122a7cb4b161a0719a93 /debian
parent8b93572b386256c53c12012be87adabd73d80520 (diff)
Weblog (WIP)
Diffstat (limited to 'debian')
-rw-r--r--debian/webserver.conf53
-rw-r--r--debian/webserver.install1
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