1
0

config 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. # LDAP dn for initial login, used if LDAP server does not allow anonymous searches
  47. # Leave empty if searches are anonymous
  48. ldap_binddn =
  49. # LDAP password for initial login, used with ldap_binddn
  50. ldap_password =
  51. [storage]
  52. # Folder for storing local calendars, created if not present
  53. folder = ~/.config/radicale/calendars
  54. [logging]
  55. # Logging configuration file
  56. # If no config is given, simple information is printed on the standard output
  57. # For more information about the syntax of the configuration file, see:
  58. # http://docs.python.org/library/logging.config.html
  59. config = /etc/radicale/logging
  60. # Set the default logging level to debug
  61. debug = False
  62. # Store all environment variables (including those set in the shell)
  63. full_environment = False