diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-04-30 14:01:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 14:01:57 +0100 |
commit | 05d21be4313b84bda0ab2b702d86639d9a4922de (patch) | |
tree | 94111d4afc707d9c09c0a9a741590e8a3f1e472a /nginx-conf | |
parent | b9aa9c9ba3ff1b82ecf01d1e2fdffa90ca3e59f5 (diff) | |
parent | 343352001c8dcc0b36e60b9e354597f849b49601 (diff) |
Merge pull request #40 from defencedigital/pyswitch
Change port Django is running on to 8000
Diffstat (limited to 'nginx-conf')
-rw-r--r-- | nginx-conf/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx-conf/nginx.conf b/nginx-conf/nginx.conf index 8fb10b5..19bb015 100644 --- a/nginx-conf/nginx.conf +++ b/nginx-conf/nginx.conf @@ -14,7 +14,7 @@ http { server { listen 8090; location / { - proxy_pass http://django-app-service:8080; + proxy_pass http://django-app-service:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } |