From 555f87b42b970c85e1c4918d81ef2d1f6cb5bfd4 Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Wed, 11 Oct 2023 14:42:15 +0200 Subject: [PATCH] docs: correct default value for session lifetime [ci skip] --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 97ec6c4..d956730 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -38,7 +38,7 @@ The following flags are available: | `redis.username` | string | Username for Redis. Does not override username set by `redis.uri`. | | | `session.inactivity` | boolean | Automatically expire user sessions if they have not refreshed their tokens within a given duration. | `false` | | `session.inactivity-timeout` | duration | Inactivity timeout for user sessions. | `30m` | -| `session.max-lifetime` | duration | Max lifetime for user sessions. | `12h` | +| `session.max-lifetime` | duration | Max lifetime for user sessions. | `10h` | | `session.refresh` | boolean | Enable refresh tokens. | `true` | | `session.refresh-auto` | boolean | Enable automatic refresh of tokens. Only available in standalone mode. Will automatically refresh tokens if they are expired as long as the session is valid (i.e. not exceeding `session.max-lifetime` or `session.inactivity-timeout`). | `true` | | `shutdown-graceful-period` | duration | Graceful shutdown period when receiving a shutdown signal after which the server is forcibly exited. | `30s` |