fix: reverse IPV6_DISABLE logic

Co-authored-by: Bastien Wirtz <bastien.wirtz@gmail.com>
This commit is contained in:
Thomas Anderson 2023-09-27 01:56:24 -04:00 committed by Bastien Wirtz
parent c8470d1e75
commit 9b77b47022

View File

@ -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