From f26af62425d459ffd56c00bdd6d99e484dcc7812 Mon Sep 17 00:00:00 2001 From: Joel Nimety Date: Thu, 31 Oct 2024 17:47:54 -0500 Subject: [PATCH] chore(Docker): Enable ipv6 in nginx.conf (#2030) --- .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 +}