From e1e8fac332cfb12bbd49e07e76006f5a0f76f780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20B=C3=B6cker?= <40693721+PhilippB21@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:10:46 +0100 Subject: [PATCH] =?UTF-8?q?If=20you=20use=20a=20subpath,=20the=20proxy=5Fp?= =?UTF-8?q?ass=20needs=20to=20include=20the=20URI;=20otherwise,=20it=20won?= =?UTF-8?q?=E2=80=99t=20work=20correctly.=20Therefore,=20the=20trailing=20?= =?UTF-8?q?slash=20must=20be=20removed=20in=20proxy=5Fpass.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Using-a-Reverse-Proxy-with-Paperless-ngx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Using-a-Reverse-Proxy-with-Paperless-ngx.md b/Using-a-Reverse-Proxy-with-Paperless-ngx.md index c4e3610..57cf1b3 100644 --- a/Using-a-Reverse-Proxy-with-Paperless-ngx.md +++ b/Using-a-Reverse-Proxy-with-Paperless-ngx.md @@ -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; ... ```