diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-30 12:24:31 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-30 12:24:31 +0100 |
commit | 3360fda6d84b9f8470b3cba0ca851a16289f9e0e (patch) | |
tree | 4da432a6a5874682caa331a270f053ca70c809b7 /nginx-conf | |
parent | 9796bc5f69c1b0da57a3f11aa133ec3e10c43b66 (diff) |
Ports changes
Diffstat (limited to 'nginx-conf')
-rw-r--r-- | nginx-conf/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx-conf/nginx.conf b/nginx-conf/nginx.conf index f345d2e..8fb10b5 100644 --- a/nginx-conf/nginx.conf +++ b/nginx-conf/nginx.conf @@ -12,11 +12,11 @@ http { uwsgi_temp_path /tmp/uwsgi_temp; scgi_temp_path /tmp/scgi_temp; server { - listen 80; + listen 8090; location / { proxy_pass http://django-app-service:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } } -}
\ No newline at end of file +} |