Skip to content

Commit

Permalink
Merge pull request #1320 from jummo/master
Browse files Browse the repository at this point in the history
Add example configuration for Caddy web server
  • Loading branch information
pbiering authored Mar 1, 2024
2 parents 668ad03 + fa6ec95 commit 2f97fc5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,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
Expand Down

0 comments on commit 2f97fc5

Please sign in to comment.