From 8b3d8d4c983f2a6f643c91e6492e34e50f804629 Mon Sep 17 00:00:00 2001 From: TDLaouer Date: Sun, 13 Jul 2025 19:35:55 +0200 Subject: [PATCH] fix --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 9bbdf85..67160ee 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -21,7 +21,7 @@ server { # Proxy pass all other requests to Gunicorn (or uWSGI) location / { - proxy_pass http://web:8001; # Gunicorn/WSGI server address + proxy_pass http://web:8001/; # Gunicorn/WSGI server address proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;