From e0235d9340893bb3429cebe00f887bc878841b73 Mon Sep 17 00:00:00 2001 From: Drikus Roor Date: Wed, 7 Feb 2024 18:24:23 +0100 Subject: [PATCH] config: Update proxy_pass URL in custom-nginx.conf --- nginx/custom-nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/custom-nginx.conf b/nginx/custom-nginx.conf index d143018cf..202e30e79 100644 --- a/nginx/custom-nginx.conf +++ b/nginx/custom-nginx.conf @@ -19,7 +19,7 @@ server { # Proxy other /server/* requests to the Django app that runs on http://localhost:8000 location /server/ { - proxy_pass http://localhost:8000; + proxy_pass http://server:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;