1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-13 18:50:53 +00:00
Radicale/proxy.md
Guillaume Ayoub e69970ed56 Minor fixes
2017-05-27 12:06:41 +02:00

21 lines
593 B
Markdown

---
layout: page
title: Reverse Proxy
permalink: /proxy/
---
When a everse proxy is used, the path at which Radicale is available must
be provided via the `X-Script-Name` header.
Example **nginx** configuration:
```nginx
location /sub/folder/radicale {
proxy_pass localhost:5232/; # The / is important!
proxy_set_header X-Script-Name /radciale;
}
```
Be reminded that Radicale's default configuration enforces limits on the
maximum number of parallel connections, the maximum file size and the rate of
incorrect authentication attempts. Connections are terminated after a timeout.