[7.x] Switch to Symfony 5 (#5157)

* Update exception handler

* Explictly specify 'lax' same site config

* Use the null secure option for session cookies
This commit is contained in:
Graham Campbell
2019-11-25 14:46:29 +00:00
committed by Taylor Otwell
parent c473b53626
commit 2913a55d87
2 changed files with 7 additions and 7 deletions

View File

@@ -166,7 +166,7 @@ return [
|
*/
'secure' => env('SESSION_SECURE_COOKIE', false),
'secure' => env('SESSION_SECURE_COOKIE', null),
/*
|--------------------------------------------------------------------------
@@ -194,6 +194,6 @@ return [
|
*/
'same_site' => null,
'same_site' => 'lax',
];