Fixes to make SO login work. GitHub now works also (was a FF plugin bug)

This commit is contained in:
2018-07-10 22:57:50 +02:00
parent d74b76da3e
commit be3164e997
10 changed files with 53 additions and 15 deletions
+2 -2
View File
@@ -177,7 +177,7 @@ return [
|
*/
'http_only' => true,
'http_only' => env('SESSION_HTTPONLY', true),
/*
|--------------------------------------------------------------------------
@@ -192,6 +192,6 @@ return [
|
*/
'same_site' => 'lax', // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
'same_site' => env('SESSION_SAMESITE', null), // this was changed, leaving it as 'null' caused session to be reset during oAuth2 login
];