This file is indexed.

/etc/apache2/conf-available/radicale-plinth.conf is in plinth 0.13.1+ds-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##
## 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>