1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-29 16:55:32 +00:00

WIP (add missing configuration options)

This commit is contained in:
Unrud 2017-05-25 19:58:22 +02:00
parent 482ee333f1
commit 016c4585fa
4 changed files with 21 additions and 6 deletions

View file

@ -62,13 +62,23 @@ Default: ``20``
### max_content_length
The maximum size of the request body. (bytes)
Default ``10000000``
Default: ``10000000``
### timeout
Socket timeout. (seconds)
Default: ``10``
### ssl
Enable transport layer encryption.
Default: ``False``
### certificate
Path of the SSL certifcate.
Default: ``/etc/ssl/radicale.cert.pem``
### key
Path to the private key for SSL. Only effective if ``ssl`` is enabled.

View file

@ -16,5 +16,6 @@ location /sub/folder/radicale {
}
```
Radicale's default configuration limits the maximum number of parallel
connections!
Be reminded that Radicale's default configuration enforces limits on the
maximum number of parallel connections, the maximum file size and the rate of
incorrect authentication attempts. Connections are terminated after a timeout.

View file

@ -82,14 +82,15 @@ filesystem_folder = /path/to/storage
## Limits
Radicale enforces limits on the maximum number of parallel connections,
the maximum file size (important for contacts with big photos) and limits
the rate of incorrect authentication attempts. The default values should be
fine for most scenarios.
the maximum file size (important for contacts with big photos) and the rate of
incorrect authentication attempts. Connections are terminated after a timeout.
The default values should be fine for most scenarios.
```ini
[server]
max_connections = 20
max_content_length = 10000000 # 1 Megabyte
timeout = 10 # seconds
[auth]
delay = 1 # Average delay after failed login attempts in seconds
```

View file

@ -6,3 +6,6 @@ permalink: /wsgi/
Radicale is compatible with the WSGI specification. No special configuration
is required.
Be reminded that Radicale's default configuration enforces limits on the
maximum file size and that connections are terminated after a timeout.