diff options
| author | Amir Zarrinkafsh <nightah@me.com> | 2024-11-02 07:40:40 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-01 20:40:40 +0000 |
| commit | 7584aaccb9c4a88e352bbcdf77e79a1d27a57a70 (patch) | |
| tree | d602fecfba535e756fa11cc364489f7bcf992452 /docs/data | |
| parent | ac5cf4345e3ccf88c5862199131a7a6bd0f193f4 (diff) | |
fix(session): add connection timeout and retry options to redis (#8146)
* fix(session): add connection timeout and retry options to redis
* docs: add new redis options to docs
Signed-off-by: Amir Zarrinkafsh <nightah@me.com>
Diffstat (limited to 'docs/data')
| -rw-r--r-- | docs/data/configkeys.json | 10 | ||||
| -rw-r--r-- | docs/data/languages.json | 3 | ||||
| -rw-r--r-- | docs/data/misc.json | 4 |
3 files changed, 14 insertions, 3 deletions
diff --git a/docs/data/configkeys.json b/docs/data/configkeys.json index 42ca4307f..cbaf653ba 100644 --- a/docs/data/configkeys.json +++ b/docs/data/configkeys.json @@ -435,6 +435,16 @@ "env": "AUTHELIA_SESSION_REDIS_PORT" }, { + "path": "session.redis.timeout", + "secret": false, + "env": "AUTHELIA_SESSION_REDIS_TIMEOUT" + }, + { + "path": "session.redis.max_retries", + "secret": false, + "env": "AUTHELIA_SESSION_REDIS_MAX_RETRIES" + }, + { "path": "session.redis.username", "secret": false, "env": "AUTHELIA_SESSION_REDIS_USERNAME" diff --git a/docs/data/languages.json b/docs/data/languages.json index 5c3985c62..cc1e0731b 100644 --- a/docs/data/languages.json +++ b/docs/data/languages.json @@ -433,7 +433,8 @@ "display": "Chinese (Taiwan)", "locale": "zh-TW", "namespaces": [ - "portal" + "portal", + "settings" ], "fallbacks": [ "en" diff --git a/docs/data/misc.json b/docs/data/misc.json index 2b9c11658..aa9efc8a9 100644 --- a/docs/data/misc.json +++ b/docs/data/misc.json @@ -7,8 +7,8 @@ "latest": "4.38.17", "support": { "traefik": [ - "v3.1.6", - "v2.11.12" + "v3.2.0", + "v2.11.13" ] } } |
