config 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. # File storing the PID in daemon mode
  18. pid =
  19. # SSL flag, enable HTTPS protocol
  20. ssl = False
  21. # SSL certificate path
  22. certificate = /etc/apache2/ssl/server.crt
  23. # SSL private key
  24. key = /etc/apache2/ssl/server.key
  25. [encoding]
  26. # Encoding for responding requests
  27. request = utf-8
  28. # Encoding for storing local calendars
  29. stock = utf-8
  30. [acl]
  31. # Access method
  32. # Value: None | htpasswd | LDAP
  33. type = None
  34. # Personal calendars only available for logged in users
  35. # If True, /alice/calendar will only be available for alice
  36. personal = True
  37. # Htpasswd filename
  38. htpasswd_filename = /etc/radicale/users
  39. # Htpasswd encryption method
  40. # Value: plain | sha1 | crypt
  41. htpasswd_encryption = crypt
  42. # LDAP server URL, with protocol and port
  43. ldap_url = ldap://localhost:389/
  44. # LDAP base path
  45. ldap_base = ou=users,dc=example,dc=com
  46. # LDAP login attribute
  47. ldap_attribute = uid
  48. # LDAP dn for initial login, used if LDAP server does not allow anonymous searches
  49. # Leave empty if searches are anonymous
  50. ldap_binddn =
  51. # LDAP password for initial login, used with ldap_binddn
  52. ldap_password =
  53. [storage]
  54. # Folder for storing local calendars, created if not present
  55. folder = ~/.config/radicale/calendars
  56. [logging]
  57. # Logging configuration file
  58. # If no config is given, simple information is printed on the standard output
  59. # For more information about the syntax of the configuration file, see:
  60. # http://docs.python.org/library/logging.config.html
  61. config = /etc/radicale/logging
  62. # Set the default logging level to debug
  63. debug = False
  64. # Store all environment variables (including those set in the shell)
  65. full_environment = False