diff options
Diffstat (limited to 'debian/webserver.example-redirect.conf')
-rw-r--r-- | debian/webserver.example-redirect.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/webserver.example-redirect.conf b/debian/webserver.example-redirect.conf new file mode 100644 index 0000000..689dfa8 --- /dev/null +++ b/debian/webserver.example-redirect.conf @@ -0,0 +1,28 @@ +<webserver> + <user>www-data</user> + <group>www-data</group> + <threads>10</threads> + <statisticspath>/var/lib/webserver/stats.db</statisticspath> + <plugin-directory>/usr/lib/webserver/plugins</plugin-directory> + <sites> + <site> + <name>localhost</name> + <host>localhost</host> + <host>[::1]</host> + <path requested="/redirect1"> + <plugin>redirect</plugin> + <target>https://www.antcom.de/</target> + <STATUS_CODE>301</STATUS_CODE> + <MESSAGE>Redirecting to antcom.de ...</MESSAGE> + </path> + </site> + </sites> + <sockets> + <socket> + <address>::1</address> + <port>8080</port> + <protocol>http</protocol> + <site>localhost</site> + </socket> + </sockets> +</webserver> |