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:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-26 11:19:19 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-26 11:21:38 +0400
commit794c189650d8eb2068da3a5df6ccd22966ee7f38 (patch)
tree19eeab843dd5d75c64cd705b4f3438f9d1bf3f65 /config
parentafc3d9314a79e146ea63fd11e389a9b7665f4982 (diff)
session life time is now configurable and set to the same value
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php3
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 *",