From a9498215f4ab3ededa41362b1d8bdd62222c3002 Mon Sep 17 00:00:00 2001 From: "Carlos Murilo de O. C. F." Date: Fri, 1 May 2026 23:54:32 -0300 Subject: [PATCH] fix: fix nginx reverse proxy configuration closes #65 --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index fb00a35..cba2000 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -7,7 +7,7 @@ server { listen 80; location / { - proxy_pass http://localhost:8000; + proxy_pass http://app:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;