From 26f4d14f9fdb5b722cfca5e7ac1d11de94774739 Mon Sep 17 00:00:00 2001 From: kinou-p Date: Thu, 2 Oct 2025 17:13:41 +0200 Subject: [PATCH] fix: nginx listen on all interfaces for Docker --- nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 6d91a23..856463f 100644 --- a/nginx.conf +++ b/nginx.conf @@ -36,7 +36,8 @@ http { server { listen 80; - server_name localhost; + listen [::]:80; + server_name _; root /usr/share/nginx/html; index index.html;