diff --git a/Using-a-Reverse-Proxy-with-Paperless-ngx.md b/Using-a-Reverse-Proxy-with-Paperless-ngx.md index bc68d5c..b9a2636 100644 --- a/Using-a-Reverse-Proxy-with-Paperless-ngx.md +++ b/Using-a-Reverse-Proxy-with-Paperless-ngx.md @@ -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.