fix: add ipv6 support for internal nginx proxy

This commit is contained in:
DZ945brH
2025-12-05 13:04:17 +01:00
committed by GitHub
parent 069ed0a267
commit 2c48b18968

View File

@@ -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;
}
}
}
}