From 5099f54390ee57beb80f9ba4e5d85940e4c0e102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sat, 27 Mar 2021 17:14:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E5=8D=8F=E8=AE=AE=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E9=85=8D=E7=BD=AEsamesite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/cookie.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/cookie.php b/config/cookie.php index b6371edf7..9d5fc81f5 100644 --- a/config/cookie.php +++ b/config/cookie.php @@ -20,12 +20,12 @@ return [ 'path' => '/', // cookie 有效域名 'domain' => '', - // cookie 安全传输 - 'secure' => false, // httponly 访问设置 'httponly' => true, // 是否使用 setcookie 'setcookie' => true, - // samesite 设置,支持 'strict' 'lax' - 'samesite' => '', -]; \ No newline at end of file + // cookie 安全传输,只支持 https 协议 + 'secure' => app()->request->isSsl(), + // samesite 安装设置,支持 'strict' 'lax' 'none' + 'samesite' => app()->request->isSsl() ? 'none' : 'lax', +];