mirror of
https://github.com/Kozea/Radicale.git
synced 2025-07-02 16:58:30 +00:00
21 lines
444 B
Markdown
21 lines
444 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:
|
||
|
```
|
||
|
location /sub/folder/radicale {
|
||
|
proxy_pass localhost:5232/; # The / is important!
|
||
|
proxy_set_header X-Script-Name /radciale;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Radicale's default configuration limits the maximum number of parallel
|
||
|
connections!
|