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:
parent
050a723002
commit
6cf0ba5f59
3 changed files with 25 additions and 6 deletions
19
_posts/2018-08-16-radicale-2.1.10.md
Normal file
19
_posts/2018-08-16-radicale-2.1.10.md
Normal 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
|
|
@ -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.
|
||||
|
|
8
setup.md
8
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue