Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-16 15:46:22 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-10-16 15:46:22 +0400
commit59404b567528e15890954775cffe61cae3fdc724 (patch)
treeb229d6ceeb862547912b41a1ee05f0b78a60c4fe /config
parentb08a1696f5a30321b0073799d6f0984daf392115 (diff)
parent8be9c04a3a6f84c8673e0b6db3305cf0f427a43b (diff)
Merge pull request #31 from visit1985/persistentcookies
reresubmit: improved persistent cookies :)
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php5
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
+);