Minor typo fixes
[jelmer/calypso.git] / config
1 # Config file for Radicale - A simple calendar server
2 #
3 # Place it into /etc/radicale/config (global) 
4 # or ~/.config/radicale/config (user)
5 #
6 # The current values are the default ones
7
8 [server]
9 # CalDAV server hostname, empty for all hostnames
10 host =
11 # CalDAV server port
12 port = 5232
13 # Daemon flag
14 daemon = False
15 # SSL flag, enable HTTPS protocol
16 ssl = False
17 # SSL certificate path (if needed)
18 certificate = /etc/apache2/ssl/server.crt
19 # SSL private key (if needed)
20 key = /etc/apache2/ssl/server.key
21
22 [encoding]
23 # Encoding for responding requests
24 request = utf-8
25 # Encoding for storing local calendars
26 stock = utf-8
27
28 [acl]
29 # Access method
30 # Value: fake | htpasswd
31 type = fake
32 # Htpasswd filename (if needed)
33 filename = /etc/radicale/users
34 # Htpasswd encryption method (if needed)
35 # Value: plain | sha1 | crypt
36 encryption = crypt
37
38 [storage]
39 # Folder for storing local calendars,
40 # created if not present
41 folder = ~/.config/radicale/calendars
42
43 # vim:ft=cfg