Route nginx to django app

This commit is contained in:
Jake Howard 2023-02-22 09:15:44 +00:00
parent 4326dc2299
commit 92ecbb2c48
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -34,7 +34,7 @@ server {
proxy_set_header X-Original-URL $scheme://$http_host$request_uri; proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:8080; proxy_pass http://django:8080;
} }
location /static { location /static {