diff options
author | Thomas Anderson <tnyeanderson@users.noreply.github.com> | 2023-09-27 01:56:24 -0400 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-10-21 05:16:20 -0700 |
commit | 9b77b4702250822a2fc0f62493d3cf56346b8b61 (patch) | |
tree | 1b1920aa13c3a3cebf7c97ff1370f9878c0024bd | |
parent | c8470d1e756e9a539cc4b1218e43f00d61f2b1fc (diff) | |
download | homer-9b77b4702250822a2fc0f62493d3cf56346b8b61.tar.gz homer-9b77b4702250822a2fc0f62493d3cf56346b8b61.tar.zst homer-9b77b4702250822a2fc0f62493d3cf56346b8b61.zip |
fix: reverse IPV6_DISABLE logic
Co-authored-by: Bastien Wirtz <bastien.wirtz@gmail.com>
-rwxr-xr-x | lighttpd-ipv6.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lighttpd-ipv6.sh b/lighttpd-ipv6.sh index 00b0dda..40c485a 100755 --- a/lighttpd-ipv6.sh +++ b/lighttpd-ipv6.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | # Enable IPV6 if needed | 3 | # Enable IPV6 if needed |
4 | if [[ "${IPV6_DISABLE}" == "1" ]]; then | 4 | if [[ "${IPV6_DISABLE}" != "1" ]]; then |
5 | echo '$SERVER["socket"] == "[::]:" + env.PORT { }' | 5 | echo '$SERVER["socket"] == "[::]:" + env.PORT { }' |
6 | fi | 6 | fi |