From 9b77b4702250822a2fc0f62493d3cf56346b8b61 Mon Sep 17 00:00:00 2001 From: Thomas Anderson Date: Wed, 27 Sep 2023 01:56:24 -0400 Subject: [PATCH] fix: reverse IPV6_DISABLE logic Co-authored-by: Bastien Wirtz --- lighttpd-ipv6.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ #!/bin/sh # Enable IPV6 if needed -if [[ "${IPV6_DISABLE}" == "1" ]]; then +if [[ "${IPV6_DISABLE}" != "1" ]]; then echo '$SERVER["socket"] == "[::]:" + env.PORT { }' fi