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:
authorBart Visscher <bartv@thisnet.nl>2012-09-05 19:33:15 +0400
committerMichael Göhler <somebody.here@gmx.de>2012-10-15 00:36:25 +0400
commit4b799a69824f9f4a2ddb7df382b305b304b7d754 (patch)
tree5249cf3a249976c5192acdc8a260f42e67a8b5df /config
parent7f3e0b5566b8c3e54cb97d186da6d398f58f8b15 (diff)
Make the lifetime of the remember login cookie
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 09eb6053c24..0c685945904 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -86,6 +86,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.
*/
@@ -104,4 +107,4 @@ $CONFIG = array(
'writable' => true,
),
),
-); \ No newline at end of file
+);