diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-10 15:36:59 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-10 15:36:59 +0200 |
commit | c0ccf16c69d43a89674640c61d13ec2c02b128d6 (patch) | |
tree | ae840bc16f0ddb430bdd68aacef4d7cb2af970d9 /webserver.conf | |
parent | 0d157fb407a35f8afe6d6f0f4c2cc5cd5d5a1933 (diff) |
First working plugin: static-files
Diffstat (limited to 'webserver.conf')
-rw-r--r-- | webserver.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webserver.conf b/webserver.conf index 0981c0d..a50dc6d 100644 --- a/webserver.conf +++ b/webserver.conf @@ -13,12 +13,12 @@ <host>lists.antcom.de</host> <host>antcom.de</host> <host>www.antcom.de</host> - <path requested="/" type="files"> + <path requested="/"> <plugin>static-files</plugin> <target>/home/ernie/homepage/test</target> </path> <!-- - <path requested="/webbox" type="plugin"> + <path requested="/webbox"> <plugin>webbox</plugin> <target>/var/lib/webbox</target> </path> @@ -29,7 +29,8 @@ <site> <name>marx</name> <host>marx.antcom.de</host> - <path requested="/" type="files"> + <path requested="/"> + <plugin>static-files</plugin> <target>/home/ernie/homepage/test1</target> </path> <certpath>/home/ernie/code/webserver/cert.pem</certpath> |