You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,3 +54,37 @@ to client applications participating in the session. You can use this mechanism
51
54
an [inactivity timeout](/identityserver/ui/server-side-sessions/inactivity-timeout/) that applies across all your client applications.
52
55
53
56
The `ServerSideSessions.ExpiredSessionsTriggerBackchannelLogout` flag enables this behavior, and it is on by default.
57
+
58
+
### Configuring Server-Side Session Lifetime
59
+
60
+
If you need to change the default lifetime of server-side sessions, there are two ways to do so, depending on whether
61
+
you're using ASP.NET Core Identity or not.
62
+
63
+
<Tabs>
64
+
<TabItemlabel="Default behavior">
65
+
The default session lifetime of 10 hours is inherited from the [`IdentityServerOptions.Authentication.CookieLifetime`](/identityserver/reference/options/#authentication) property.
66
+
When configuring IdentityServer, you can override this setting like so:
0 commit comments