Skip to content

Commit

Permalink
Merge pull request #1696 from pbiering/nginx-well-known-rewrite
Browse files Browse the repository at this point in the history
extend example config for nginx reverse proxy related to well-known
  • Loading branch information
pbiering authored Feb 18, 2025
2 parents aa35c67 + 018978e commit c606271
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contrib/nginx/radicale.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
###
### Usual configuration file location: /etc/nginx/default.d/

## "well-known" redirect at least for Apple devices
rewrite ^/.well-known/carddav /radicale/ redirect;
rewrite ^/.well-known/caldav /radicale/ redirect;

## Base URI: /radicale/
location /radicale/ {
proxy_pass http://localhost:5232/;
Expand Down

0 comments on commit c606271

Please sign in to comment.