docs: correct default value for session lifetime [ci skip]

This commit is contained in:
Trong Huu Nguyen
2023-10-11 14:42:15 +02:00
parent f246fc7975
commit 555f87b42b
+1 -1
View File
@@ -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` |