config 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. [server]
  8. # CalDAV server hostname, empty for all hostnames
  9. host =
  10. # CalDAV server port
  11. port = 5232
  12. # Daemon flag
  13. daemon = False
  14. # SSL flag, enable HTTPS protocol
  15. ssl = False
  16. # SSL certificate path (if needed)
  17. certificate = /etc/apache2/ssl/server.crt
  18. # SSL private key (if needed)
  19. key = /etc/apache2/ssl/server.key
  20. [encoding]
  21. # Encoding for responding requests
  22. request = utf-8
  23. # Encoding for storing local calendars
  24. stock = utf-8
  25. [acl]
  26. # Access method
  27. # Value: fake | htpasswd
  28. type = fake
  29. # Personal calendars only available for logged in users (if needed)
  30. personal = False
  31. # Htpasswd filename (if needed)
  32. filename = /etc/radicale/users
  33. # Htpasswd encryption method (if needed)
  34. # Value: plain | sha1 | crypt
  35. encryption = crypt
  36. [storage]
  37. # Folder for storing local calendars,
  38. # created if not present
  39. folder = ~/.config/radicale/calendars
  40. # vim:ft=cfg