diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-26 09:19:19 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-26 09:21:38 +0200 |
commit | 794c189650d8eb2068da3a5df6ccd22966ee7f38 (patch) | |
tree | 19eeab843dd5d75c64cd705b4f3438f9d1bf3f65 /config | |
parent | afc3d9314a79e146ea63fd11e389a9b7665f4982 (diff) | |
download | nextcloud-server-794c189650d8eb2068da3a5df6ccd22966ee7f38.tar.gz nextcloud-server-794c189650d8eb2068da3a5df6ccd22966ee7f38.zip |
session life time is now configurable and set to the same value
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 72834009201..9254365e3e2 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -145,6 +145,9 @@ $CONFIG = array( /* Lifetime of the remember login cookie, default is 15 days */ "remember_login_cookie_lifetime" => 60*60*24*15, +/* Life time of a session after inactivity */ +"session_life_time" => 60 * 60 * 12, + /* Custom CSP policy, changing this will overwrite the standard policy */ "custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *", |