config 956 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. # Htpasswd filename (if needed)
  30. filename = /etc/radicale/users
  31. # Htpasswd encryption method (if needed)
  32. # Value: plain | sha1 | crypt
  33. encryption = crypt
  34. [storage]
  35. # Folder for storing local calendars,
  36. # created if not present
  37. folder = ~/.config/radicale/calendars
  38. # vim:ft=cfg