You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check if IPv6 is enabled on the hostif sysctl -a | grep -q 'net.ipv6.conf.all.disable_ipv6 = 0';then# Enable IPv6 configuration in nginx.conf
sed -i 's/#listen \[::0\]:80;/listen [::0]:80;/' /etc/nginx/nginx.conf
else# Disable IPv6 configuration in nginx.conf
sed -i 's/listen \[::0\]:80;/#listen [::0]:80;/' /etc/nginx/nginx.conf
fi
Issue caused by #385 , Causing deployment to break.
The text was updated successfully, but these errors were encountered: