diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-03 12:01:13 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-03 12:01:13 +0200 |
commit | 21a066b4b972bd055b424a946ff1f80a939443c3 (patch) | |
tree | 177ece2787518f3e68bd073ebd887548f9672d79 /webserver.conf | |
parent | 4e699f552db264b9d988873f2189440280e821a7 (diff) |
Added redirect plugin, documentation
Diffstat (limited to 'webserver.conf')
-rw-r--r-- | webserver.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webserver.conf b/webserver.conf index cc62bc7..66d4f1f 100644 --- a/webserver.conf +++ b/webserver.conf @@ -35,7 +35,6 @@ <plugin>weblog</plugin> <target>/home/ernie/testblog</target> <WEBLOG_NAME>Roland Reichweins Blog</WEBLOG_NAME> - <WEBLOG_DESCRIPTION>Roland Reichweins Blog</WEBLOG_DESCRIPTION> <WEBLOG_KEYWORDS>Roland Reichwein, Blog</WEBLOG_KEYWORDS> </path> <path requested="/stats"> @@ -51,6 +50,12 @@ <plugin>fcgi</plugin> <target>127.0.0.1:9000</target> </path> + <path requested="/redirect1"> + <plugin>redirect</plugin> + <target>https://www.antcom.de/</target> + <STATUS_CODE>301</STATUS_CODE> + <MESSAGE>Redirecting to antcom.de ...</MESSAGE> + </path> <certpath>/home/ernie/code/webserver/fullchain.pem</certpath> <keypath>/home/ernie/code/webserver/privkey.pem</keypath> </site> |