config 2.6 KB

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