config 2.6 KB

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