diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-04-30 14:19:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 14:19:19 +0100 |
commit | 02748924c087ce2c5d4159a29b1da1f8c065449e (patch) | |
tree | 5b7f292987db820bd26fac3042a123ba94a3aeda | |
parent | 05d21be4313b84bda0ab2b702d86639d9a4922de (diff) | |
parent | 554c8bb19e7d68fde457269dd915a124b345ac77 (diff) |
Merge pull request #41 from defencedigital/pyswitch
Change nginx service port
Diffstat (limited to '')
-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 19bb015..5015e63 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:8000; + proxy_pass http://django-app-service:8060; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } |