diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-16 04:46:22 -0700 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-16 04:46:22 -0700 |
commit | 59404b567528e15890954775cffe61cae3fdc724 (patch) | |
tree | b229d6ceeb862547912b41a1ee05f0b78a60c4fe /config | |
parent | b08a1696f5a30321b0073799d6f0984daf392115 (diff) | |
parent | 8be9c04a3a6f84c8673e0b6db3305cf0f427a43b (diff) | |
download | nextcloud-server-59404b567528e15890954775cffe61cae3fdc724.tar.gz nextcloud-server-59404b567528e15890954775cffe61cae3fdc724.zip |
Merge pull request #31 from visit1985/persistentcookies
reresubmit: improved persistent cookies :)
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index f2fd948418f..3d0a70db1d8 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -92,6 +92,9 @@ $CONFIG = array( /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ "loglevel" => "", +/* Lifetime of the remember login cookie, default is 15 days */ +"remember_login_cookie_lifetime" => 60*60*24*15, + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ @@ -110,4 +113,4 @@ $CONFIG = array( 'writable' => true, ), ), -);
\ No newline at end of file +); |