config 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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: fake | htpasswd | authLdap
  29. type = fake
  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. [authLdap]
  38. #LDAP Host
  39. LDAPServer = 127.0.0.1
  40. #Fields to create a LDAP bind
  41. #Value to add before the user name in a LDAP bind
  42. LDAPPrepend = uid=
  43. #Value to add after the user name in a LDAP bind
  44. LDAPAppend = ou=users,dc=exmaple,dc=dom
  45. #=> uid=corentin,ou=users,dc=exmaple,dc=dom
  46. [storage]
  47. # Folder for storing local calendars,
  48. # created if not present
  49. folder = ~/.config/radicale/calendars
  50. [Logging]
  51. # Logging type
  52. # Value: syslog | file | stdout
  53. type = file
  54. # Logging filename (if needed)
  55. logfile = ~/.config/radicale/radicale.log
  56. # Log facility 10: DEBUG, 20: INFO, 30 WARNING, 40 ERROR, 50 CRITICAL
  57. facility = 50
  58. # vim:ft=cfg