mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Add note that proxy_pass needs to be adjusted for domain subpath, otherwise a redirect loop happens
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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user