Add note that proxy_pass needs to be adjusted for domain subpath, otherwise a redirect loop happens

Martin Richtarsky 2024-06-12 09:40:28 +02:00
parent f808a4a9a1
commit ff0a8be144

@ -39,6 +39,17 @@ http {
The `PAPERLESS_URL` configuration variable is also required when using a
reverse proxy; consider setting `USE_X_FORWARD_HOST=true` and `USE_X_FORWARD_PORT=true`. Please refer to the [hosting and security](https://docs.paperless-ngx.com/configuration/#hosting-and-security) docs.
When using a domain subpath (e.g. `/paperless`), you need to set `PAPERLESS_FORCE_SCRIPT_NAME=/paperless` and adjust `proxy_pass` as well:
```
...
location /paperless {
# Adjust host and port as required.
proxy_pass http://localhost:8000/paperless;
...
```
Also read
[this](https://channels.readthedocs.io/en/stable/deploying.html#nginx-supervisor-ubuntu),
towards the end of the section.