diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-08 19:30:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 19:30:05 +0100 |
commit | 0c33fc706c301b4ccad7ea4a1fe7d8ec1018af82 (patch) | |
tree | 23bfce361131bfdd06c2fe06edb0db0ae0f0860b /config | |
parent | bb590347d25bd1ebfa53888ae4d967cccc9726c1 (diff) | |
parent | 296332efa38d25e18ffe066843d707bbc835068c (diff) | |
download | nextcloud-server-0c33fc706c301b4ccad7ea4a1fe7d8ec1018af82.tar.gz nextcloud-server-0c33fc706c301b4ccad7ea4a1fe7d8ec1018af82.zip |
Merge pull request #26007 from nextcloud/docs/config/session_lifetime
Add hint about possible limit when setting a session_lifetime
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 5c5ac3399b8..29fe3629806 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, |