auth.user.login-token-lifetime-seconds

Background

Set how long a user’s login session will last starting from the time they login assuming the session token is not refreshed using auth.user.login-token-refresh-after-percentage.

Note that this value is read only when Funnelback’s web server is started. After modifying the value, the web server must be restarted for the change to take effect.

Setting the key

Set this configuration key in the server configuration.

Use the configuration key editor to add or edit the auth.user.login-token-lifetime-seconds key, and set the value. This can be set to any valid Integer value.

Default value

User sessions last for 4 days (4 days * 24 hours * 60 minutes * 60 seconds = 345600 seconds) by default.

This value is chosen as a default to the session of a user who uses Funnelback daily to remain logged in over a three day weekend.

auth.user.login-token-lifetime-seconds=345600

Examples

Decrease the user session length to 8 hours (8 hours * 60 minutes * 60 seconds = 28800 seconds).

Note that this would mean the user could remain logged in during a typical workday but their session would have expired each morning, forcing them to log in again each day.

auth.user.login-token-lifetime-seconds=28800