From f03a12120cfda4eabe26d43de714b96660d2edd4 Mon Sep 17 00:00:00 2001 From: Github Actions <> Date: Fri, 1 Mar 2024 05:33:12 +0000 Subject: [PATCH] Generate documentation --- master.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/master.html b/master.html index e46026ef..107a1eed 100644 --- a/master.html +++ b/master.html @@ -541,10 +541,15 @@ starts. To start the service manually open Services in

Reverse Proxy

-

When a reverse proxy is used, the path at which Radicale is available -must be provided via the X-Script-Name header. The proxy -must remove the location from the URL path that is forwarded to -Radicale.

+

When a reverse proxy is used, and Radicale should be made available +at a path below the root (such as /radicale/), then this +path must be provided via the X-Script-Name header (without +a trailing /). The proxy must remove the location from the +URL path that is forwarded to Radicale. If Radicale should be made +available at the root of the web server (in the nginx case using +location /), then the setting of the +X-Script-Name header should be removed from the example +below.

Example nginx configuration:

location /radicale/ { # The trailing / is important!
     proxy_pass        http://localhost:5232/; # The / is important!