config 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <<<<<<< HEAD
  29. # Value: fake | htpasswd | authLdap
  30. type = fake
  31. =======
  32. # Value: None | htpasswd
  33. type = None
  34. >>>>>>> d9ea784e31687b03f1451bc5b543122f05c5deb1
  35. # Personal calendars only available for logged in users (if needed)
  36. personal = False
  37. # Htpasswd filename (if needed)
  38. filename = /etc/radicale/users
  39. # Htpasswd encryption method (if needed)
  40. # Value: plain | sha1 | crypt
  41. encryption = crypt
  42. [authLdap]
  43. #LDAP Host
  44. LDAPServer = 127.0.0.1
  45. #Fields to create a LDAP bind
  46. #Value to add before the user name in a LDAP bind
  47. LDAPPrepend = uid=
  48. #Value to add after the user name in a LDAP bind
  49. LDAPAppend = ou=users,dc=exmaple,dc=dom
  50. #=> uid=corentin,ou=users,dc=exmaple,dc=dom
  51. [storage]
  52. # Folder for storing local calendars,
  53. # created if not present
  54. folder = ~/.config/radicale/calendars
  55. <<<<<<< HEAD
  56. [Logging]
  57. # Logging type
  58. # Value: syslog | file | stdout
  59. type = file
  60. # Logging filename (if needed)
  61. logfile = ~/.config/radicale/radicale.log
  62. # Log facility 10: DEBUG, 20: INFO, 30 WARNING, 40 ERROR, 50 CRITICAL
  63. facility = 50
  64. =======
  65. [logging]
  66. # Logging configuration file
  67. # If no config is given, simple information is printed on the standard output
  68. # For more information about the syntax of the configuration file, see:
  69. # http://docs.python.org/library/logging.config.html
  70. config = /etc/radicale/logging
  71. # Set the default logging level to debug
  72. debug = False
  73. >>>>>>> d9ea784e31687b03f1451bc5b543122f05c5deb1
  74. # vim:ft=cfg