diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-03-08 16:49:30 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-03-08 16:49:30 +0100 |
commit | 296332efa38d25e18ffe066843d707bbc835068c (patch) | |
tree | 705cc67ac440a5fb23054599b63e320901a3db6e /config | |
parent | 615721df822763640adac016d9bf5a637c0a0360 (diff) | |
download | nextcloud-server-296332efa38d25e18ffe066843d707bbc835068c.tar.gz nextcloud-server-296332efa38d25e18ffe066843d707bbc835068c.zip |
Add hint about possible limit when setting a session_lifetime
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 5792381e4d7..72679a52998 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -249,6 +249,9 @@ $CONFIG = [ /** * The lifetime of a session after inactivity. * + * The maximum possible time is limited by the session.gc_maxlifetime php.ini setting + * which would overwrite this option if it is less than the value in the config.php + * * Defaults to ``60*60*24`` seconds (24 hours) */ 'session_lifetime' => 60 * 60 * 24, |