1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Add example configuration for Caddy web server

This commit is contained in:
Patrick 2023-08-05 18:35:05 +02:00
parent d7ce2f0b98
commit 701a9794bc

View file

@ -344,6 +344,20 @@ location /radicale/ { # The trailing / is important!
}
```
Example **Caddy** configuration with basicauth from Caddy:
```Caddy
handle_path /radicale* {
basicauth {
user hash
}
reverse_proxy localhost:5232 {
header_up +X-Script-Name "/radicale"
header_up +X-remote-user "{http.auth.user.id}"
}
}
```
Example **Apache** configuration:
```apache