session驱动改为redis
Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
parent
925d43c88a
commit
5448a88197
@ -7,8 +7,9 @@ file_exists($session_path) || mkdir($session_path, 0755, true);
|
|||||||
/* 定义Session会话参数 */
|
/* 定义Session会话参数 */
|
||||||
return [
|
return [
|
||||||
'id' => '',
|
'id' => '',
|
||||||
'type' => '',
|
'type' => 'redis',
|
||||||
'prefix' => 'ta',
|
'prefix' => 'ta',
|
||||||
|
'expire' => 3600 * 24,
|
||||||
'auto_start' => true,
|
'auto_start' => true,
|
||||||
'path' => $session_path,
|
'path' => $session_path,
|
||||||
'name' => $session_name,
|
'name' => $session_name,
|
||||||
@ -17,4 +18,12 @@ return [
|
|||||||
// 'use_trans_sid' => 0,
|
// 'use_trans_sid' => 0,
|
||||||
// 'httponly' => true,
|
// 'httponly' => true,
|
||||||
// 'secure' => true,
|
// 'secure' => true,
|
||||||
|
|
||||||
|
|
||||||
|
// redis主机
|
||||||
|
'host' => '127.0.0.1',
|
||||||
|
// redis端口
|
||||||
|
'port' => 6379,
|
||||||
|
// 密码
|
||||||
|
'password' => '',
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user