Add config parameter to define session duration

This commit is contained in:
Frederic Guillot
2015-08-01 12:35:06 -04:00
parent db88a00d48
commit fb44818707
5 changed files with 19 additions and 10 deletions

View File

@@ -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
----------------