From c7f026b7836a9ed193fe853f1d9f9f2e5d130a69 Mon Sep 17 00:00:00 2001
From: Github Actions <>
Date: Thu, 19 Jun 2025 05:33:51 +0000
Subject: [PATCH] Generate documentation
---
master.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/master.html b/master.html
index 664eb892..f85acc42 100644
--- a/master.html
+++ b/master.html
@@ -611,8 +611,8 @@ 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:
-See for latest examples: https://github.com/Kozea/Radicale/tree/master/contrib/nginx/
+Example nginx configuration extension:
+See also for latest examples: https://github.com/Kozea/Radicale/tree/master/contrib/nginx/
location /radicale/ { # The trailing / is important!
proxy_pass http://localhost:5232/; # The / is important!
proxy_set_header X-Script-Name /radicale;
@@ -623,15 +623,15 @@ below.
proxy_set_header Host $http_host;
proxy_pass_header Authorization;
}
-Example Caddy configuration:
+Example Caddy configuration extension:
+See also for latest examples: https://github.com/Kozea/Radicale/tree/master/contrib/caddy/
handle_path /radicale/* {
uri strip_prefix /radicale
reverse_proxy localhost:5232 {
- header_up X-Script-Name /radicale
}
}
-Example Apache configuration:
-See for latest examples: https://github.com/Kozea/Radicale/tree/master/contrib/apache/
+Example Apache configuration extension:
+See also for latest examples: https://github.com/Kozea/Radicale/tree/master/contrib/apache/
RewriteEngine On
^/radicale$ /radicale/ [R,L]
RewriteRule