Skip to content

Commit

Permalink
Add NGINX configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseFilipeFerreira authored Jun 27, 2024
1 parent 9366220 commit 90d2a6e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,14 @@ filesystem_folder = /collections
# add git versioning to calendar database
# hook = git add -A && (git diff --cached --quiet || git commit -m "Changes by "%(user)s)
```

## NGINX setup
```
location /radicale/ {
proxy_pass http://127.0.0.1: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;
}
```

0 comments on commit 90d2a6e

Please sign in to comment.