If you use a subpath, the proxy_pass needs to include the URI; otherwise, it won’t work correctly. Therefore, the trailing slash must be removed in proxy_pass.

Philipp Böcker
2025-11-03 18:10:46 +01:00
parent 1642550fea
commit e1e8fac332

@@ -51,7 +51,7 @@ When using a domain subpath (e.g. `/paperless`), you need to set `PAPERLESS_FORC
location /paperless/ {
# Adjust host and port as required.
proxy_pass http://localhost:8000/;
proxy_pass http://localhost:8000;
...
```