From 24aa2bca3091f93137ee65fffbfd6cf8427665f9 Mon Sep 17 00:00:00 2001 From: Developer Date: Thu, 30 Jul 2026 20:56:29 +0700 Subject: [PATCH] fix: nginx listen on 0.0.0.0:8080 for Docker Traefik access 127.0.0.1 from inside Docker container is the container's own loopback, not host's. Changed to listen 8080 (all interfaces) so Traefik can reach it via host.docker.internal:8080. --- infra/nix/nginx.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/nix/nginx.conf.template b/infra/nix/nginx.conf.template index e84786e..65b5e25 100644 --- a/infra/nix/nginx.conf.template +++ b/infra/nix/nginx.conf.template @@ -12,7 +12,7 @@ http { } server { - listen 127.0.0.1:8080; + listen 8080; server_name _; gzip on;