summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-08-01 12:35:06 -0400
committerFrederic Guillot <fred@kanboard.net>2015-08-01 12:35:06 -0400
commitfb448187078ace6574f145c39c319c38a287c84b (patch)
tree39784d369fd4856034fa70b4dd06046ecd7da861 /docs
parentdb88a00d48d1dce48b8700e460c06ff7fb344f0a (diff)
Add config parameter to define session duration
Diffstat (limited to 'docs')
-rw-r--r--docs/config.markdown9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/config.markdown b/docs/config.markdown
index 44f72b32..5fb6bb18 100644
--- a/docs/config.markdown
+++ b/docs/config.markdown
@@ -210,6 +210,15 @@ define('BRUTEFORCE_LOCKDOWN', 6);
define('BRUTEFORCE_LOCKDOWN_DURATION', 15);
```
+Session
+-------
+
+```php
+// Session duration in second (0 = until the browser is closed)
+// See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime
+define('SESSION_DURATION', 0);
+```
+
Various settings
----------------