根据协议自动配置samesite

This commit is contained in:
邹景立 2021-03-27 17:14:37 +08:00
parent a1e4b124d9
commit 5099f54390

View File

@ -20,12 +20,12 @@ return [
'path' => '/', 'path' => '/',
// cookie 有效域名 // cookie 有效域名
'domain' => '', 'domain' => '',
// cookie 安全传输
'secure' => false,
// httponly 访问设置 // httponly 访问设置
'httponly' => true, 'httponly' => true,
// 是否使用 setcookie // 是否使用 setcookie
'setcookie' => true, 'setcookie' => true,
// samesite 设置,支持 'strict' 'lax' // cookie 安全传输,只支持 https 协议
'samesite' => '', 'secure' => app()->request->isSsl(),
]; // samesite 安装设置,支持 'strict' 'lax' 'none'
'samesite' => app()->request->isSsl() ? 'none' : 'lax',
];