diff --git a/_posts/2018-08-16-radicale-2.1.10.md b/_posts/2018-08-16-radicale-2.1.10.md new file mode 100644 index 00000000..3c60bc9e --- /dev/null +++ b/_posts/2018-08-16-radicale-2.1.10.md @@ -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 diff --git a/configuration.md b/configuration.md index b07a2869..e536f5f8 100644 --- a/configuration.md +++ b/configuration.md @@ -64,12 +64,12 @@ Default: `20` ### max_content_length The maximum size of the request body. (bytes) -Default: `10000000` +Default: `100000000` ### timeout Socket timeout. (seconds) -Default: `10` +Default: `30` ### ssl Enable transport layer encryption. diff --git a/setup.md b/setup.md index 92771bc0..8340ae72 100644 --- a/setup.md +++ b/setup.md @@ -114,10 +114,10 @@ The default values should be fine for most scenarios. ```ini [server] max_connections = 20 -# 1 Megabyte -max_content_length = 10000000 -# 10 seconds -timeout = 10 +# 100 Megabyte +max_content_length = 100000000 +# 30 seconds +timeout = 30 [auth] # Average delay after failed login attempts in seconds