document nginx http_host header

This commit is contained in:
Valentin Iovene 2020-05-03 23:26:10 +02:00 committed by Unrud
parent 2b60f8ca2a
commit 05b0819474

View File

@ -334,6 +334,7 @@ location /radicale/ { # The trailing / is important!
proxy_pass http://localhost:5232/; # The / is important! proxy_pass http://localhost:5232/; # The / is important!
proxy_set_header X-Script-Name /radicale; proxy_set_header X-Script-Name /radicale;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass_header Authorization; proxy_pass_header Authorization;
} }
``` ```
@ -370,6 +371,7 @@ location /radicale/ {
proxy_set_header X-Script-Name /radicale; proxy_set_header X-Script-Name /radicale;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Remote-User $remote_user; proxy_set_header X-Remote-User $remote_user;
proxy_set_header Host $http_host;
auth_basic "Radicale - Password Required"; auth_basic "Radicale - Password Required";
auth_basic_user_file /etc/nginx/htpasswd; auth_basic_user_file /etc/nginx/htpasswd;
} }