mirror of https://github.com/MISP/MISP
chg: [Session handling] Added some sane defaults to the session handler
parent
adebce6c69
commit
e95bb043b4
|
@ -177,8 +177,10 @@ define('LOG_ERROR', LOG_ERR);
|
||||||
*/
|
*/
|
||||||
Configure::write('Session', array(
|
Configure::write('Session', array(
|
||||||
'timeout' => 60, // Session timeout, default is 1 hour
|
'timeout' => 60, // Session timeout, default is 1 hour
|
||||||
|
'cookie_timeout' => 10080 , // Cookie timeout, default is 1 week
|
||||||
'defaults' => 'php',
|
'defaults' => 'php',
|
||||||
'autoRegenerate' => false
|
'autoRegenerate' => false,
|
||||||
|
'checkAgent' => false
|
||||||
));
|
));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue