config 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. # if you want to bind to multiple interfaces, seperate them with a comma
  10. # NOTE: IPv6 adresses are configured to only allow IPv6 connections
  11. # hence for binding to all IPv4 and IPv6 interfaces:
  12. # host = ::, 0.0.0.0
  13. host =
  14. # CalDAV server port
  15. port = 5232
  16. # Daemon flag
  17. daemon = False
  18. # SSL flag, enable HTTPS protocol
  19. ssl = False
  20. # SSL certificate path (if needed)
  21. certificate = /etc/apache2/ssl/server.crt
  22. # SSL private key (if needed)
  23. key = /etc/apache2/ssl/server.key
  24. [encoding]
  25. # Encoding for responding requests
  26. request = utf-8
  27. # Encoding for storing local calendars
  28. stock = utf-8
  29. [acl]
  30. # Access method
  31. # Value: fake | htpasswd
  32. type = fake
  33. # Personal calendars only available for logged in users (if needed)
  34. personal = False
  35. # Htpasswd filename (if needed)
  36. filename = /etc/radicale/users
  37. # Htpasswd encryption method (if needed)
  38. # Value: plain | sha1 | crypt
  39. encryption = crypt
  40. [storage]
  41. # Folder for storing local calendars,
  42. # created if not present
  43. folder = ~/.config/radicale/calendars
  44. # vim:ft=cfg