From 2c48b18968a74cb7150c246ebb2505d07764f109 Mon Sep 17 00:00:00 2001 From: DZ945brH <42635243+DZ945brH@users.noreply.github.com> Date: Fri, 5 Dec 2025 13:04:17 +0100 Subject: [PATCH] fix: add ipv6 support for internal nginx proxy --- nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index e53f7b740..4b82c8ca5 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,6 +5,7 @@ events { http { server { listen 7575; + listen [::]:7575; # Route websockets traffic to port 3001 location /websockets { @@ -25,4 +26,4 @@ http { client_max_body_size 32M; } } -} \ No newline at end of file +}