mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Merge pull request #1668 from pbiering/login-cache
add optional cache for login result and htpasswd + fixes final version will be updated to 3.4.0 next
This commit is contained in:
commit
b0d56f898b
11 changed files with 461 additions and 60 deletions
|
@ -55,7 +55,7 @@ Follow one of the chapters below depending on your operating system.
|
|||
|
||||
#### Linux / \*BSD
|
||||
|
||||
First, make sure that **python** 3.8 or later and **pip** are installed. On most distributions it should be
|
||||
First, make sure that **python** 3.9 or later and **pip** are installed. On most distributions it should be
|
||||
enough to install the package ``python3-pip``.
|
||||
|
||||
Then open a console and type:
|
||||
|
@ -812,6 +812,25 @@ Available backends:
|
|||
|
||||
Default: `none`
|
||||
|
||||
##### cache_logins
|
||||
|
||||
Cache successful/failed logins until expiration time. Enable this to avoid
|
||||
overload of authentication backends.
|
||||
|
||||
Default: `false`
|
||||
|
||||
##### cache_successful_logins_expiry
|
||||
|
||||
Expiration time of caching successful logins in seconds
|
||||
|
||||
Default: `15`
|
||||
|
||||
##### cache_failed_logins_expiry
|
||||
|
||||
Expiration time of caching failed logins in seconds
|
||||
|
||||
Default: `90`
|
||||
|
||||
##### htpasswd_filename
|
||||
|
||||
Path to the htpasswd file.
|
||||
|
@ -853,6 +872,12 @@ Available methods:
|
|||
|
||||
Default: `autodetect`
|
||||
|
||||
##### htpasswd_cache
|
||||
|
||||
Enable caching of htpasswd file based on size and mtime_ns
|
||||
|
||||
Default: `False`
|
||||
|
||||
##### delay
|
||||
|
||||
Average delay after failed login attempts in seconds.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue