diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-05-09 16:24:10 +0200 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-05-09 16:24:10 +0200 | 
| commit | 91f78915fed4b1a3706c4d08a9b0c2c458cb0a2e (patch) | |
| tree | 702a88ed32858cb6669562faefad891e7e07e1e9 | |
| parent | 474887f30d442b6f18ec9e8f3335cc73fee6551d (diff) | |
Added to test config
| -rw-r--r-- | webserver.conf | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/webserver.conf b/webserver.conf index 5088ef8..efc1a69 100644 --- a/webserver.conf +++ b/webserver.conf @@ -16,10 +16,12 @@     <host>ip6-localhost</host>     <host>127.0.0.1</host>     <host>[::1]</host> +     <path requested="/">      <plugin>static-files</plugin>      <target>/home/ernie/homepage/test</target>     </path> +     <path requested="/webbox1">      <plugin>static-files</plugin>      <target>/home/ernie/code/webserver/plugins/webbox/html</target> @@ -54,6 +56,25 @@      <plugin>fcgi</plugin>      <target>/home/ernie/code/webserver/fastcgi/socket</target>     </path> + +   <path requested="/cgi-bin/admin/echo.fcgi"> +    <plugin>fcgi</plugin> +    <target>127.0.0.1:9001</target> +   </path> +   <path requested="/cgi-bin/admin/admin.fcgi"> +    <plugin>fcgi</plugin> +    <target>127.0.0.1:9002</target> +   </path> +   <path requested="/cgi-bin/shop.fcgi"> +    <plugin>fcgi</plugin> +    <target>127.0.0.1:9003</target> +   </path> +   <path requested="/webshop"> +    <plugin>static-files</plugin> +    <target>/home/ernie/code/webshop/html</target> +   </path> + +     <path requested="/redirect1">      <plugin>redirect</plugin>      <target>https://www.antcom.de/</target>  | 
