1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-02 16:58:30 +00:00

Fix nginx example

location and X-Script-Name must be the same of course.
This commit is contained in:
Unrud 2017-05-28 03:30:18 +02:00
parent fc4d1b6caa
commit 5071c1931c

View file

@ -12,7 +12,7 @@ Example **nginx** configuration:
```nginx ```nginx
location /sub/folder/radicale { location /sub/folder/radicale {
proxy_pass localhost:5232/; # The / is important! proxy_pass localhost:5232/; # The / is important!
proxy_set_header X-Script-Name /radciale; proxy_set_header X-Script-Name /sub/folder/radicale;
} }
``` ```