From 5448a88197900eb6313f25da5d7bd2196f686d05 Mon Sep 17 00:00:00 2001 From: vilson <545522390@qq.com> Date: Mon, 24 Jun 2019 19:08:06 +0800 Subject: [PATCH] =?UTF-8?q?session=E9=A9=B1=E5=8A=A8=E6=94=B9=E4=B8=BAredi?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: vilson <545522390@qq.com> --- config/session.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index 1390224..458bee3 100644 --- a/config/session.php +++ b/config/session.php @@ -7,8 +7,9 @@ file_exists($session_path) || mkdir($session_path, 0755, true); /* 定义Session会话参数 */ return [ 'id' => '', - 'type' => '', + 'type' => 'redis', 'prefix' => 'ta', + 'expire' => 3600 * 24, 'auto_start' => true, 'path' => $session_path, 'name' => $session_name, @@ -17,4 +18,12 @@ return [ // 'use_trans_sid' => 0, // 'httponly' => true, // 'secure' => true, + + + // redis主机 + 'host' => '127.0.0.1', + // redis端口 + 'port' => 6379, + // 密码 + 'password' => '', ];