Change SameSite attribute on session cookies to "lax" ()

This commit is contained in:
Anders G. Jørgensen 2020-10-25 21:15:49 +01:00 committed by GitHub
parent cfaf41ce24
commit a271b59092
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -188,5 +188,5 @@ return [
|
*/
'same_site' => null,
'same_site' => env('SESSION_SAMESITE_COOKIE', 'lax'),
];