From fba2a7caef242a491c3ba17129e20f7cc9bd5e2d Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 11 Sep 2025 08:02:40 +0200 Subject: [PATCH] according to https://github.com/Kozea/Radicale/pull/1866 the trailing / should be removed --- DOCUMENTATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index cde35fdb..1560ca90 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -410,7 +410,7 @@ See also for latest examples: https://github.com/Kozea/Radicale/tree/master/cont ```nginx location /radicale/ { # The trailing / is important! - proxy_pass http://localhost:5232/; # The / is important! + proxy_pass http://localhost:5232; proxy_set_header X-Script-Name /radicale; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $host;