config 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # -*- mode: conf -*-
  2. # vim:ft=cfg
  3. # Config file for Radicale - A simple calendar server
  4. #
  5. # Place it into /etc/radicale/config (global)
  6. # or ~/.config/radicale/config (user)
  7. #
  8. # The current values are the default ones
  9. [server]
  10. # CalDAV server hostnames separated by a comma
  11. # IPv4 syntax: address:port
  12. # IPv6 syntax: [address]:port
  13. # IPv6 adresses are configured to only allow IPv6 connections
  14. hosts = 0.0.0.0:5232
  15. # Daemon flag
  16. daemon = False
  17. # SSL flag, enable HTTPS protocol
  18. ssl = False
  19. # SSL certificate path
  20. certificate = /etc/apache2/ssl/server.crt
  21. # SSL private key
  22. key = /etc/apache2/ssl/server.key
  23. [encoding]
  24. # Encoding for responding requests
  25. request = utf-8
  26. # Encoding for storing local calendars
  27. stock = utf-8
  28. [acl]
  29. # Access method
  30. # Value: None | htpasswd | LDAP
  31. type = None
  32. # Personal calendars only available for logged in users
  33. # If True, /alice/calendar will only be available for alice
  34. personal = True
  35. # Htpasswd filename
  36. htpasswd_filename = /etc/radicale/users
  37. # Htpasswd encryption method
  38. # Value: plain | sha1 | crypt
  39. htpasswd_encryption = crypt
  40. # LDAP server URL, with protocol and port
  41. ldap_url = ldap://localhost:389/
  42. # LDAP base path
  43. ldap_base = ou=users,dc=example,dc=com
  44. # LDAP login attribute
  45. ldap_attribute = uid
  46. [storage]
  47. # Folder for storing local calendars, created if not present
  48. folder = ~/.config/radicale/calendars
  49. [logging]
  50. # Logging configuration file
  51. # If no config is given, simple information is printed on the standard output
  52. # For more information about the syntax of the configuration file, see:
  53. # http://docs.python.org/library/logging.config.html
  54. config = /etc/radicale/logging
  55. # Set the default logging level to debug
  56. debug = False