From ca4d34c23038cf165a6bcda6806ccd4afb151d0c Mon Sep 17 00:00:00 2001 From: Flambard alan <7330585+alan7000@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:07:50 +0100 Subject: [PATCH] Enable listen IPv6 for port 3000 --- docker/nginx.conf.template | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nginx.conf.template b/docker/nginx.conf.template index 2c1712e..8936ae5 100644 --- a/docker/nginx.conf.template +++ b/docker/nginx.conf.template @@ -1,5 +1,6 @@ server { listen 3000; + listen [::]:3000; server_name localhost; root /usr/share/nginx/html; index index.html;