mirror of
https://github.com/adityachandelgit/BookLore.git
synced 2026-02-18 03:07:40 +01:00
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:
5
start.sh
5
start.sh
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user