Session Expiration
If the user session ends when the session cookie expires without explicitly triggering logout, there is most likely the need to clean up the server-side session data. In order to remove these expired records, there is an automatic cleanup mechanism that periodically scans for expired sessions. When these records are cleaned up, you can optionally notify the client that the session has ended via back-channel logout.
Expiration Configuration
Section titled “Expiration Configuration”The expiration configuration features can be configured with the server-side session options. It is enabled by default, but if you wish to disable it or change how often IdentityServer will check for expired sessions, you can.
For example, to change the interval:
builder.Services.AddIdentityServer(options => { options.ServerSideSessions.RemoveExpiredSessionsFrequency = TimeSpan.FromSeconds(60);}) .AddServerSideSessions();
To disable:
builder.Services.AddIdentityServer(options => { options.ServerSideSessions.RemoveExpiredSessions = false;}) .AddServerSideSessions();
Back-channel Logout
Section titled “Back-channel Logout”When the session cleanup job removes expired records, it will by default also trigger back-channel logout notifications to client applications participating in the session. You can use this mechanism to create an inactivity timeout that applies across all your client applications.
The ServerSideSessions.ExpiredSessionsTriggerBackchannelLogout
flag enables this behavior, and it is on by default.