diff options
author | Andrew Pearson <andrew@apearson.io> | 2023-05-10 09:16:01 -0500 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-05-13 15:22:47 +0200 |
commit | acd6a8911be0804374b5600f2125e97eb178bfa5 (patch) | |
tree | 98632508ca139a38385fdd0a18fd93bd614c3b96 | |
parent | 6cfa1643b4024af3a504fcc547fcd04dbb1a0d0a (diff) | |
download | homer-acd6a8911be0804374b5600f2125e97eb178bfa5.tar.gz homer-acd6a8911be0804374b5600f2125e97eb178bfa5.tar.zst homer-acd6a8911be0804374b5600f2125e97eb178bfa5.zip |
Listen on IPv6 as well
-rw-r--r-- | lighttpd.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lighttpd.conf b/lighttpd.conf index fa0cfb2..2bf043f 100644 --- a/lighttpd.conf +++ b/lighttpd.conf | |||
@@ -1,6 +1,7 @@ | |||
1 | include "/etc/lighttpd/mime-types.conf" | 1 | include "/etc/lighttpd/mime-types.conf" |
2 | 2 | ||
3 | server.port = env.PORT | 3 | server.port = env.PORT |
4 | $SERVER["socket"] == "[::]:" + env.PORT { } | ||
4 | server.modules = ( "mod_alias" ) | 5 | server.modules = ( "mod_alias" ) |
5 | server.username = "lighttpd" | 6 | server.username = "lighttpd" |
6 | server.groupname = "lighttpd" | 7 | server.groupname = "lighttpd" |