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
 RewriteRule ^/radicale$ /radicale/ [R,L]