config 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. # Hostname syntax (using "getaddrinfo" to resolve to IPv4/IPv6 adress(es)): hostname:port
  14. # For example: 0.0.0.0:9999, [::]:9999, localhost:9999
  15. #hosts = localhost:5232
  16. # Max parallel connections
  17. #max_connections = 8
  18. # Max size of request body (bytes)
  19. #max_content_length = 100000000
  20. # Socket timeout (seconds)
  21. #timeout = 30
  22. # SSL flag, enable HTTPS protocol
  23. #ssl = False
  24. # SSL certificate path
  25. #certificate = /etc/ssl/radicale.cert.pem
  26. # SSL private key
  27. #key = /etc/ssl/radicale.key.pem
  28. # CA certificate for validating clients. This can be used to secure
  29. # TCP traffic between Radicale and a reverse proxy
  30. #certificate_authority =
  31. [encoding]
  32. # Encoding for responding requests
  33. #request = utf-8
  34. # Encoding for storing local collections
  35. #stock = utf-8
  36. [auth]
  37. # Authentication method
  38. # Value: none | htpasswd | remote_user | http_x_remote_user | denyall
  39. #type = none
  40. # Htpasswd filename
  41. #htpasswd_filename = /etc/radicale/users
  42. # Htpasswd encryption method
  43. # Value: plain | bcrypt | md5 | sha256 | sha512 | autodetect
  44. # bcrypt requires the installation of 'bcrypt' module.
  45. #htpasswd_encryption = md5
  46. # Incorrect authentication delay (seconds)
  47. #delay = 1
  48. # Message displayed in the client when a password is needed
  49. #realm = Radicale - Password Required
  50. # Convert username to lowercase, must be true for case-insensitive auth providers
  51. #lc_username = False
  52. [rights]
  53. # Rights backend
  54. # Value: none | authenticated | owner_only | owner_write | from_file
  55. #type = owner_only
  56. # File for rights management from_file
  57. #file = /etc/radicale/rights
  58. # Permit delete of a collection (global)
  59. #permit_delete_collection = True
  60. [storage]
  61. # Storage backend
  62. # Value: multifilesystem | multifilesystem_nolock
  63. #type = multifilesystem
  64. # Folder for storing local collections, created if not present
  65. #filesystem_folder = /var/lib/radicale/collections
  66. # Delete sync token that are older (seconds)
  67. #max_sync_token_age = 2592000
  68. # Skip broken item instead of triggering an exception
  69. #skip_broken_item = False
  70. # Command that is run after changes to storage
  71. # Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m "Changes by \"%(user)s\"")
  72. #hook =
  73. # Create predefined user collections
  74. #
  75. # json format:
  76. #
  77. # {
  78. # "def-addressbook": {
  79. # "D:displayname": "Personal Address Book",
  80. # "tag": "VADDRESSBOOK"
  81. # },
  82. # "def-calendar": {
  83. # "C:supported-calendar-component-set": "VEVENT,VJOURNAL,VTODO",
  84. # "D:displayname": "Personal Calendar",
  85. # "tag": "VCALENDAR"
  86. # }
  87. # }
  88. #
  89. #predefined_collections =
  90. [web]
  91. # Web interface backend
  92. # Value: none | internal
  93. #type = internal
  94. [logging]
  95. # Threshold for the logger
  96. # Value: debug | info | warning | error | critical
  97. #level = info
  98. # Don't include passwords in logs
  99. #mask_passwords = True
  100. # Log bad PUT request content
  101. #bad_put_request_content = False
  102. # Log backtrace on level=debug
  103. #backtrace_on_debug = True
  104. # Log request header on level=debug
  105. #request_header_on_debug = True
  106. # Log request content on level=debug
  107. #request_content_on_debug = True
  108. # Log response content on level=debug
  109. #response_content_on_debug = True
  110. [headers]
  111. # Additional HTTP headers
  112. #Access-Control-Allow-Origin = *
  113. [hook]
  114. # Hook types
  115. # Value: none | rabbitmq
  116. #type = none
  117. #rabbitmq_endpoint =
  118. #rabbitmq_topic =
  119. #rabbitmq_queue_type = classic