From 92ecbb2c484466916d61ad8a306064650def48ca Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 22 Feb 2023 09:15:44 +0000 Subject: [PATCH] Route nginx to django app --- etc/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/nginx.conf b/etc/nginx.conf index b74e740..1783a83 100644 --- a/etc/nginx.conf +++ b/etc/nginx.conf @@ -34,7 +34,7 @@ server { proxy_set_header X-Original-URL $scheme://$http_host$request_uri; proxy_set_header X-Real-IP $remote_addr; - proxy_pass http://localhost:8080; + proxy_pass http://django:8080; } location /static {