More fine-grained cookie control.

This commit is contained in:
James Cole
2016-03-22 15:04:51 +01:00
parent 532aa2acd0
commit 7227418c4c
3 changed files with 8 additions and 4 deletions

View File

@@ -122,7 +122,7 @@ return [
|
*/
'path' => '/',
'path' => env('COOKIE_PATH', '/'),
/*
|--------------------------------------------------------------------------
@@ -135,7 +135,7 @@ return [
|
*/
'domain' => null,
'domain' => env('COOKIE_DOMAIN', null),
/*
|--------------------------------------------------------------------------
@@ -148,6 +148,6 @@ return [
|
*/
'secure' => false,
'secure' => env('COOKIE_SECURE', false),
];