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:
parent
482ee333f1
commit
016c4585fa
4 changed files with 21 additions and 6 deletions
|
@ -62,13 +62,23 @@ Default: ``20``
|
||||||
### max_content_length
|
### max_content_length
|
||||||
The maximum size of the request body. (bytes)
|
The maximum size of the request body. (bytes)
|
||||||
|
|
||||||
Default ``10000000``
|
Default: ``10000000``
|
||||||
|
|
||||||
|
### timeout
|
||||||
|
Socket timeout. (seconds)
|
||||||
|
|
||||||
|
Default: ``10``
|
||||||
|
|
||||||
### ssl
|
### ssl
|
||||||
Enable transport layer encryption.
|
Enable transport layer encryption.
|
||||||
|
|
||||||
Default: ``False``
|
Default: ``False``
|
||||||
|
|
||||||
|
### certificate
|
||||||
|
Path of the SSL certifcate.
|
||||||
|
|
||||||
|
Default: ``/etc/ssl/radicale.cert.pem``
|
||||||
|
|
||||||
### key
|
### key
|
||||||
Path to the private key for SSL. Only effective if ``ssl`` is enabled.
|
Path to the private key for SSL. Only effective if ``ssl`` is enabled.
|
||||||
|
|
||||||
|
|
5
proxy.md
5
proxy.md
|
@ -16,5 +16,6 @@ location /sub/folder/radicale {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Radicale's default configuration limits the maximum number of parallel
|
Be reminded that Radicale's default configuration enforces limits on the
|
||||||
connections!
|
maximum number of parallel connections, the maximum file size and the rate of
|
||||||
|
incorrect authentication attempts. Connections are terminated after a timeout.
|
||||||
|
|
7
setup.md
7
setup.md
|
@ -82,14 +82,15 @@ filesystem_folder = /path/to/storage
|
||||||
## Limits
|
## Limits
|
||||||
|
|
||||||
Radicale enforces limits on the maximum number of parallel connections,
|
Radicale enforces limits on the maximum number of parallel connections,
|
||||||
the maximum file size (important for contacts with big photos) and limits
|
the maximum file size (important for contacts with big photos) and the rate of
|
||||||
the rate of incorrect authentication attempts. The default values should be
|
incorrect authentication attempts. Connections are terminated after a timeout.
|
||||||
fine for most scenarios.
|
The default values should be fine for most scenarios.
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[server]
|
[server]
|
||||||
max_connections = 20
|
max_connections = 20
|
||||||
max_content_length = 10000000 # 1 Megabyte
|
max_content_length = 10000000 # 1 Megabyte
|
||||||
|
timeout = 10 # seconds
|
||||||
[auth]
|
[auth]
|
||||||
delay = 1 # Average delay after failed login attempts in seconds
|
delay = 1 # Average delay after failed login attempts in seconds
|
||||||
```
|
```
|
||||||
|
|
3
wsgi.md
3
wsgi.md
|
@ -6,3 +6,6 @@ permalink: /wsgi/
|
||||||
|
|
||||||
Radicale is compatible with the WSGI specification. No special configuration
|
Radicale is compatible with the WSGI specification. No special configuration
|
||||||
is required.
|
is required.
|
||||||
|
|
||||||
|
Be reminded that Radicale's default configuration enforces limits on the
|
||||||
|
maximum file size and that connections are terminated after a timeout.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue