Advertisement
Guest User

radicale config

a guest
Oct 9th, 2016
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. # -*- mode: conf -*-
  2. # vim:ft=cfg
  3.  
  4. # Config file for Radicale - A simple calendar server
  5. #
  6. # Place it into /etc/radicale/config (global)
  7. # or ~/.config/radicale/config (user)
  8. #
  9. # The commented out values are the defaults.
  10.  
  11.  
  12. [server]
  13. # CalDAV server hostnames separated by a comma
  14. # IPv4 syntax: address:port
  15. # IPv6 syntax: [address]:port
  16. # IPv6 adresses are configured to only allow IPv6 connections
  17. hosts = 0.0.0.0:5232
  18. # Daemon flag
  19. daemon = True
  20. # File storing the PID in daemon mode
  21. #pid =
  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. # Reverse DNS to resolve client address in logs
  29. #dns_lookup = True
  30. # Root URL of Radicale (starting and ending with a slash)
  31. #base_prefix = /
  32. # Message displayed in the client when a password is needed
  33. realm = Radicale - Password Required lol
  34.  
  35.  
  36. [encoding]
  37. # Encoding for responding requests
  38. request = utf-8
  39. # Encoding for storing local collections
  40. stock = utf-8
  41.  
  42.  
  43. [auth]
  44. # Authentication method
  45. # Value: None | htpasswd | IMAP | LDAP | PAM | courier | http
  46. type = htpasswd
  47.  
  48. # Usernames used for public collections, separated by a comma
  49. public_users = public
  50. # Usernames used for private collections, separated by a comma
  51. private_users = private
  52.  
  53. # Htpasswd filename
  54. htpasswd_filename = /etc/radicale/users
  55. # Htpasswd encryption method
  56. # Value: plain | sha1 | crypt
  57. #htpasswd_encryption = crypt
  58. htpasswd_encryption = sha1
  59.  
  60. # LDAP server URL, with protocol and port
  61. #ldap_url = ldap://localhost:389/
  62. # LDAP base path
  63. #ldap_base = ou=users,dc=example,dc=com
  64. # LDAP login attribute
  65. #ldap_attribute = uid
  66. # LDAP filter string
  67. # placed as X in a query of the form (&(...)X)
  68. # example: (objectCategory=Person)(objectClass=User)(memberOf=cn=calenderusers,ou=users,dc=example,dc=org)
  69. # leave empty if no additional filter is needed
  70. #ldap_filter =
  71. # LDAP dn for initial login, used if LDAP server does not allow anonymous searches
  72. # Leave empty if searches are anonymous
  73. #ldap_binddn =
  74. # LDAP password for initial login, used with ldap_binddn
  75. #ldap_password =
  76. # LDAP scope of the search
  77. #ldap_scope = OneLevel
  78.  
  79. # IMAP Configuration
  80. #imap_hostname = localhost
  81. #imap_port = 143
  82. #imap_ssl = False
  83.  
  84. # PAM group user should be member of
  85. #pam_group_membership =
  86.  
  87. # Path to the Courier Authdaemon socket
  88. #courier_socket =
  89.  
  90. # HTTP authentication request URL endpoint
  91. #http_url =
  92. # POST parameter to use for username
  93. #http_user_parameter =
  94. # POST parameter to use for password
  95. #http_password_parameter =
  96.  
  97.  
  98. [rights]
  99. # Rights management method
  100. # Value: None | owner_only | owner_write | from_file
  101. type = owner_only
  102.  
  103. # File for rights management from_file
  104. file = /etc/radicale/rights
  105.  
  106.  
  107. [storage]
  108. # Storage backend
  109. # Value: filesystem | database
  110. type = filesystem
  111.  
  112. # Folder for storing local collections, created if not present
  113. filesystem_folder = /var/lib/radicale/collections
  114.  
  115. # Database URL for SQLAlchemy
  116. # dialect+driver://user:password@host/dbname[?key=value..]
  117. # For example: sqlite:///var/db/radicale.db, postgresql://user:password@localhost/radicale
  118. # See http://docs.sqlalchemy.org/en/rel_0_8/core/engines.html#sqlalchemy.create_engine
  119. #database_url =
  120.  
  121.  
  122. [logging]
  123. # Logging configuration file
  124. # If no config is given, simple information is printed on the standard output
  125. # For more information about the syntax of the configuration file, see:
  126. # http://docs.python.org/library/logging.config.html
  127. config = /etc/radicale/logging
  128. # Set the default logging level to debug
  129. debug = False
  130. # Store all environment variables (including those set in the shell)
  131. full_environment = False
  132.  
  133.  
  134. # Additional HTTP headers
  135. #[headers]
  136. #Access-Control-Allow-Origin = *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement