From ccc21c3b83e617de7b4d07b016f54f5de8d3a9df Mon Sep 17 00:00:00 2001 From: Joel Nimety Date: Sat, 19 Oct 2024 16:45:56 -0500 Subject: [PATCH] Update docker nginx.conf to enable ipv6 I'm having connectivity issues in my dual stack environment and this seems to fixes them. --- .docker/nginx.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 3465fa1e7..83746d3bb 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -1,6 +1,7 @@ server { listen 80; - + listen [::]:80; + location / { root /usr/share/nginx/html; index index.html index.htm; @@ -8,4 +9,4 @@ server { } include /etc/nginx/extra-conf.d/*.conf; -} \ No newline at end of file +}