Disable nginx IPv6 listener when disabled on host (#1998)

* Disable nginx IPv6 listener when disabled on host

Patch nginx.conf when host has IPv6 disabled so nginx does not fail to start.

* clarified comment
This commit is contained in:
descensus
2025-12-27 00:50:11 +01:00
committed by GitHub
parent 4d8092e5bc
commit fb162cb2ad

View File

@@ -11,8 +11,11 @@ envsubst '${BOOKLORE_PORT}' < /etc/nginx/nginx.conf > "$TMP_CONF"
# Move to final location
mv "$TMP_CONF" /etc/nginx/nginx.conf
# Disable nginx IPv6 listener when IPv6 is disabled on host
[ "$(cat /proc/sys/net/ipv6/conf/all/disable_ipv6 2>/dev/null)" = "0" ] || sed -i '/^[[:space:]]*listen \[\:\:\]:6060;$/d' /etc/nginx/nginx.conf
# Start nginx in background
nginx -g 'daemon off;' &
# Start Spring Boot in foreground
su-exec ${USER_ID:-0}:${GROUP_ID:-0} java -jar /app/app.jar
su-exec ${USER_ID:-0}:${GROUP_ID:-0} java -jar /app/app.jar