diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 21ee2a1..5817a48 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -334,6 +334,7 @@ location /radicale/ { # The trailing / is important! proxy_pass http://localhost:5232/; # The / is important! proxy_set_header X-Script-Name /radicale; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header Host $http_host; proxy_pass_header Authorization; } ``` @@ -370,6 +371,7 @@ location /radicale/ { proxy_set_header X-Script-Name /radicale; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Remote-User $remote_user; + proxy_set_header Host $http_host; auth_basic "Radicale - Password Required"; auth_basic_user_file /etc/nginx/htpasswd; }