initial nginx config file

This commit is contained in:
Peter Bieringer 2024-10-18 08:23:16 +02:00
parent 0badab86a6
commit 5cafd29d7f

View file

@ -0,0 +1,21 @@
### Proxy Forward to local running "radicale" server
###
### Usual configuration file location: /etc/nginx/default.d/
## Base URI: /radicale/
#location /radicale/ {
# proxy_pass http://localhost:5232/;
# 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;
#}
## Base URI: /
#location / {
# proxy_pass http://localhost:5232/;
# 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;
#}