mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-25 08:43:36 +00:00
- Radicale 1 needs to have /radicale/.well-known/*dav to the URLs where as Radicale 2 needs to have /radicale to be the URLs. Hence have two separate apache configuration files. - Use expr= when setting X-REMOTE-USER header to set the authenticated user name properly. Without this all users are using a single user '(null)' data. Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
14 lines
354 B
Plaintext
14 lines
354 B
Plaintext
##
|
|
## On all sites, provide Radicale on a path: /radicale
|
|
## Allow all valid users.
|
|
##
|
|
Redirect 301 /.well-known/carddav /radicale/.well-known/carddav
|
|
Redirect 301 /.well-known/caldav /radicale/.well-known/caldav
|
|
|
|
<Location /radicale>
|
|
ProxyPass http://localhost:5232
|
|
|
|
Include includes/freedombox-auth-ldap.conf
|
|
Require valid-user
|
|
</Location>
|