diff options
| author | Luke Hoersten <[email protected]> | 2022-11-06 18:23:19 -0600 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2022-11-06 18:23:19 -0600 |
| commit | 464cbc372635cd82c98749931ac6901b1f81e968 (patch) | |
| tree | a2470d83a14e06426c793a634c6c82b44b4e7ce6 /miniflux/templates | |
| parent | c6aa08f181af3ffd75beff2cc0a6fbc78bfc0b5b (diff) | |
Fixed proxy pass.
Diffstat (limited to 'miniflux/templates')
| -rw-r--r-- | miniflux/templates/nginx.conf.j2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miniflux/templates/nginx.conf.j2 b/miniflux/templates/nginx.conf.j2 index b0e4c32..9eca4be 100644 --- a/miniflux/templates/nginx.conf.j2 +++ b/miniflux/templates/nginx.conf.j2 @@ -20,7 +20,9 @@ server { ssl_stapling_verify on; location / { - proxy_pass {{nginx_proxy_pass}}; + set $upstream {{nginx_proxy_pass}}; + proxy_pass $upstream; + proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; |
