config 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 hostnames separated by a comma
  9. # IPv4 syntax: address:port
  10. # IPv6 syntax: [address]:port
  11. # IPv6 adresses are configured to only allow IPv6 connections
  12. hosts = 0.0.0.0: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. [encoding]
  22. # Encoding for responding requests
  23. request = utf-8
  24. # Encoding for storing local calendars
  25. stock = utf-8
  26. [acl]
  27. # Access method
  28. # Value: None | htpasswd
  29. type = None
  30. # Personal calendars only available for logged in users (if needed)
  31. personal = False
  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. [storage]
  38. # Folder for storing local calendars,
  39. # created if not present
  40. folder = ~/.config/radicale/calendars
  41. [logging]
  42. # Logging configuration file
  43. # If no config is given, simple information is printed on the standard output
  44. # For more information about the syntax of the configuration file, see:
  45. # http://docs.python.org/library/logging.config.html
  46. config = /etc/radicale/logging
  47. # Set the default logging level to debug
  48. debug = False
  49. # vim:ft=cfg