Update nginx configuration for manual setup

Since v2 tandoor added user session tracking which requires the reverse proxy to add an extra header.

This change adds the `X-Forwarded-For` header to the example nginx configuration. This header fixes the issue described in #3943.
This commit is contained in:
Matthias Lange
2025-09-03 10:22:49 +02:00
committed by GitHub
parent a01f86a14e
commit f099e2e5d3

View File

@@ -196,6 +196,7 @@ server {
proxy_set_header Host $http_host;
proxy_pass http://unix:/var/www/recipes/recipes.sock;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
}
}
```