diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-11 13:17:32 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-11 13:17:32 +0200 |
commit | 6081819802972c716745a44e3521ccb3b3cf7b1a (patch) | |
tree | d1dafa4b821acff243f1613d2dd483e49782ff0b /webserver.conf | |
parent | 07f01d1ab5e68fc042356fd90fa07c199791b29c (diff) |
Support IPv6
Diffstat (limited to 'webserver.conf')
-rw-r--r-- | webserver.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/webserver.conf b/webserver.conf index a50dc6d..44dba49 100644 --- a/webserver.conf +++ b/webserver.conf @@ -13,6 +13,9 @@ <host>lists.antcom.de</host> <host>antcom.de</host> <host>www.antcom.de</host> + <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> @@ -54,11 +57,25 @@ --> </socket> <socket> + <address>::1</address> + <port>8080</port> + <protocol>http</protocol> + <!-- + <site>antcom.de</site> + <site>reichwein.it</site> + --> + </socket> + <socket> <address>127.0.0.1</address> <port>8081</port> <protocol>https</protocol> </socket> <socket> + <address>::1</address> + <port>8081</port> + <protocol>https</protocol> + </socket> + <socket> <address>127.0.0.1</address> <port>443</port> <protocol>https</protocol> |