From 7bfb1a155e27d2a4e518bbce1b4d028b35b1aa44 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 12 Feb 2025 17:31:00 +0100 Subject: [PATCH] Add documentation for session timeout configuration --- docs/reference/configuration.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md index 40e7e06f5..2671fc807 100644 --- a/docs/reference/configuration.md +++ b/docs/reference/configuration.md @@ -711,4 +711,19 @@ experimental: # Time-to-live of compatibility access tokens in seconds, when refresh tokens are supported. Defaults to 300, 5 minutes. #compat_token_ttl: 300 + + # Experimental feature to automatically expire inactive sessions + # Disabled by default + #inactive_session_expiration: + # Time after which an inactive session is automatically finished in seconds + #ttl: 32400 + + # Should compatibility sessions expire after inactivity. Defaults to true. + #expire_compat_sessions: true + + # Should OAuth 2.0 sessions expire after inactivity. Defaults to true. + #expire_oauth_sessions: true + + # Should user sessions expire after inactivity. Defaults to true. + #expire_user_sessions: true ```