Merge pull request #469 from mineyang/master

默认关闭session的安全传输,此选项仅能在HTTPS下设置开启
This commit is contained in:
ThinkPHP
2017-02-13 13:38:12 +08:00
committed by GitHub

View File

@@ -206,7 +206,7 @@ return [
// 是否自动开启 SESSION
'auto_start' => true,
'httponly' => true,
'secure' => true,
'secure' => false,
],
// +----------------------------------------------------------------------