config 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 hostname, empty for all hostnames
  9. host =
  10. # CalDAV server port
  11. port = 5232
  12. # Daemon flag
  13. daemon = False
  14. # SSL flag, enable HTTPS protocol
  15. ssl = False
  16. # SSL certificate path (if needed)
  17. certificate = /etc/apache2/ssl/server.crt
  18. # SSL private key (if needed)
  19. key = /etc/apache2/ssl/server.key
  20. [encoding]
  21. # Encoding for responding requests
  22. request = utf-8
  23. # Encoding for storing local calendars
  24. stock = utf-8
  25. [acl]
  26. # Access method
  27. # Value: fake | htpasswd | authLdap
  28. type = fake
  29. # Personal calendars only available for logged in users (if needed)
  30. personal = False
  31. # Htpasswd filename (if needed)
  32. filename = /etc/radicale/users
  33. # Htpasswd encryption method (if needed)
  34. # Value: plain | sha1 | crypt
  35. encryption = crypt
  36. [authLdap]
  37. #LDAP Host
  38. LDAPServer = 127.0.0.1
  39. #Fields to create a LDAP bind
  40. #Value to add before the user name in a LDAP bind
  41. LDAPPrepend = uid=
  42. #Value to add after the user name in a LDAP bind
  43. LDAPAppend = ou=users,dc=exmaple,dc=dom
  44. #=> uid=corentin,ou=users,dc=exmaple,dc=dom
  45. [storage]
  46. # Folder for storing local calendars,
  47. # created if not present
  48. folder = ~/.config/radicale/calendars
  49. [logging]
  50. # Full path of logfile
  51. file = ~/.config/radicale/radicale.log
  52. # Logging messages which are less severe than level will be ignored
  53. # Log level are (debug, info, warning, error, critical)
  54. level = error
  55. # vim:ft=cfg