1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 #
# !!! This file is managed by Ansible !!!
#
[server]
hosts = 127.0.0.1:{{ services.radicale.port | default(5232) }}
[encoding]
request = utf-8
stock = utf-8
[auth]
type = htpasswd
htpasswd_filename = /etc/radicale/users
htpasswd_encryption = {{ services.radicale.passwordEncryption | default("plain") }}
[web]
type = internal
[headers]
Access-Control-Allow-Origin = *
{% if services.radicale.extraConfig is defined %}
{{ services.radicale.extraConfig }}
{% endif %}