mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
19 lines
507 B
Plaintext
19 lines
507 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
|
|
|
|
AuthType basic
|
|
AuthName "FreedomBox Login"
|
|
AuthBasicProvider ldap
|
|
AuthLDAPUrl "ldap:///ou=users,dc=thisbox?uid"
|
|
AuthLDAPGroupAttribute memberUid
|
|
AuthLDAPGroupAttributeIsDN off
|
|
Require valid-user
|
|
</Location>
|