1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Add news for 2.1.10

This commit is contained in:
Unrud 2018-08-16 08:01:02 +02:00
parent 050a723002
commit 6cf0ba5f59
3 changed files with 25 additions and 6 deletions

View file

@ -0,0 +1,19 @@
---
layout: page
title: Radicale 2.1.10
---
Radicale 2.1.10 is out!
### 2.1.10 - Wild Radish
This release is compatible with version 2.0.0. See
[http://radicale.org/1to2/](http://radicale.org/1to2/) if you want to switch
from 1.x.x to 2.x.x.
* Update required versions for dependencies
* Get ``RADICALE_CONFIG`` from WSGI environ
* Improve HTTP status codes
* Fix race condition in storage lock creation
* Raise default limits for content length and timeout
* Log output from hook

View file

@ -64,12 +64,12 @@ 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: `100000000`
### timeout ### timeout
Socket timeout. (seconds) Socket timeout. (seconds)
Default: `10` Default: `30`
### ssl ### ssl
Enable transport layer encryption. Enable transport layer encryption.

View file

@ -114,10 +114,10 @@ The default values should be fine for most scenarios.
```ini ```ini
[server] [server]
max_connections = 20 max_connections = 20
# 1 Megabyte # 100 Megabyte
max_content_length = 10000000 max_content_length = 100000000
# 10 seconds # 30 seconds
timeout = 10 timeout = 30
[auth] [auth]
# Average delay after failed login attempts in seconds # Average delay after failed login attempts in seconds