config 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. # For example: 0.0.0.0:9999, [::]:9999
  14. # IPv6 adresses are configured to only allow IPv6 connections
  15. #hosts = 0.0.0.0:5232
  16. # Daemon flag
  17. #daemon = False
  18. # File storing the PID in daemon mode
  19. #pid =
  20. # Max size of request body (bytes)
  21. #max_content_length = 10000000
  22. # Socket timeout (seconds)
  23. #timeout = 10
  24. # SSL flag, enable HTTPS protocol
  25. #ssl = False
  26. # SSL certificate path
  27. #certificate = /etc/apache2/ssl/server.crt
  28. # SSL private key
  29. #key = /etc/apache2/ssl/server.key
  30. # SSL Protocol used. See python's ssl module for available values
  31. #protocol = PROTOCOL_SSLv23
  32. # Ciphers available. See python's ssl module for available ciphers
  33. #ciphers =
  34. # Reverse DNS to resolve client address in logs
  35. #dns_lookup = True
  36. # Root URL of Radicale (starting and ending with a slash)
  37. #base_prefix = /
  38. # Possibility to allow URLs cleaned by a HTTP server, without the base_prefix
  39. #can_skip_base_prefix = False
  40. # Message displayed in the client when a password is needed
  41. #realm = Radicale - Password Required
  42. [encoding]
  43. # Encoding for responding requests
  44. #request = utf-8
  45. # Encoding for storing local collections
  46. #stock = utf-8
  47. [well-known]
  48. # Path where /.well-known/caldav/ is redirected
  49. #caldav = '/%(user)s/caldav/'
  50. # Path where /.well-known/carddav/ is redirected
  51. #carddav = '/%(user)s/carddav/'
  52. [auth]
  53. # Authentication method
  54. # Value: None | htpasswd
  55. #type = None
  56. # Htpasswd filename
  57. #htpasswd_filename = /etc/radicale/users
  58. # Htpasswd encryption method
  59. # Value: plain | sha1 | ssha | crypt | bcrypt | md5
  60. #htpasswd_encryption = crypt
  61. [rights]
  62. # Rights backend
  63. # Value: None | authenticated | owner_only | owner_write | from_file
  64. #type = None
  65. # File for rights management from_file
  66. #file = ~/.config/radicale/rights
  67. [storage]
  68. # Storage backend
  69. # Value: multifilesystem
  70. #type = filesystem
  71. # Folder for storing local collections, created if not present
  72. #filesystem_folder = ~/.config/radicale/collections
  73. [logging]
  74. # Logging configuration file
  75. # If no config is given, simple information is printed on the standard output
  76. # For more information about the syntax of the configuration file, see:
  77. # http://docs.python.org/library/logging.config.html
  78. #config = /etc/radicale/logging
  79. # Set the default logging level to debug
  80. #debug = False
  81. # Store all environment variables (including those set in the shell)
  82. #full_environment = False
  83. [headers]
  84. # Additional HTTP headers
  85. #Access-Control-Allow-Origin = *