radicale/config

121 lines
2.4 KiB
Plaintext
Raw Normal View History

# -*- mode: conf -*-
# vim:ft=cfg
2010-08-04 01:27:40 +02:00
# Config file for Radicale - A simple calendar server
#
# Place it into /etc/radicale/config (global)
# or ~/.config/radicale/config (user)
#
# The current values are the default ones
[server]
2011-04-02 21:45:45 +02:00
# CalDAV server hostnames separated by a comma
2011-04-02 21:49:48 +02:00
# IPv4 syntax: address:port
# IPv6 syntax: [address]:port
# For example: 0.0.0.0:9999, [::]:9999
2020-02-19 09:49:56 +01:00
#hosts = localhost:5232
2016-06-10 14:36:44 +02:00
# Max parallel connections
#max_connections = 8
2016-06-10 14:36:44 +02:00
2016-06-10 14:34:52 +02:00
# Max size of request body (bytes)
2018-04-29 21:20:23 +02:00
#max_content_length = 100000000
2016-06-10 14:34:52 +02:00
2016-06-10 14:33:25 +02:00
# Socket timeout (seconds)
2018-04-29 21:20:23 +02:00
#timeout = 30
2016-06-10 14:33:25 +02:00
# SSL flag, enable HTTPS protocol
#ssl = False
2011-04-25 16:47:42 +02:00
# SSL certificate path
#certificate = /etc/ssl/radicale.cert.pem
2011-04-25 16:47:42 +02:00
# SSL private key
#key = /etc/ssl/radicale.key.pem
# CA certificate for validating clients. This can be used to secure
# TCP traffic between Radicale and a reverse proxy
#certificate_authority =
2011-10-03 00:31:15 +02:00
[encoding]
# Encoding for responding requests
#request = utf-8
# Encoding for storing local collections
#stock = utf-8
[auth]
# Authentication method
# Value: none | htpasswd | remote_user | http_x_remote_user
#type = none
2011-10-03 00:31:15 +02:00
2011-04-25 16:47:42 +02:00
# Htpasswd filename
#htpasswd_filename = /etc/radicale/users
2011-04-25 16:47:42 +02:00
# Htpasswd encryption method
# Value: plain | bcrypt | md5
2020-04-11 13:27:00 +02:00
# bcrypt requires the installation of radicale[bcrypt].
#htpasswd_encryption = md5
2011-10-03 00:31:15 +02:00
# Incorrect authentication delay (seconds)
#delay = 1
# Message displayed in the client when a password is needed
#realm = Radicale - Password Required
[rights]
# Rights backend
# Value: none | authenticated | owner_only | owner_write | from_file
#type = owner_only
2013-08-14 10:50:59 +02:00
# File for rights management from_file
#file = /etc/radicale/rights
2012-08-11 00:56:45 +02:00
[storage]
# Storage backend
2021-12-08 21:41:12 +01:00
# Value: multifilesystem | multifilesystem_nolock
2017-03-08 15:50:24 +01:00
#type = multifilesystem
# Folder for storing local collections, created if not present
2017-03-08 15:50:24 +01:00
#filesystem_folder = /var/lib/radicale/collections
# Delete sync token that are older (seconds)
#max_sync_token_age = 2592000
2016-06-11 10:34:18 +02:00
# Command that is run after changes to storage
# Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m "Changes by "%(user)s)
#hook =
2016-06-11 10:34:18 +02:00
2011-10-03 00:31:15 +02:00
2017-05-31 13:18:40 +02:00
[web]
# Web interface backend
# Value: none | internal
#type = internal
2017-05-31 13:18:40 +02:00
2011-04-10 18:17:06 +02:00
[logging]
# Threshold for the logger
# Value: debug | info | warning | error | critical
#level = warning
2016-06-11 12:53:58 +02:00
# Don't include passwords in logs
#mask_passwords = True
[headers]
# Additional HTTP headers
#Access-Control-Allow-Origin = *