Merge pull request #3537 from rkgrep/patch-2

Redis connection setup in .env
This commit is contained in:
Taylor Otwell 2015-10-26 11:48:53 -05:00
commit 892ab27f8d
1 changed files with 3 additions and 3 deletions

View File

@ -116,9 +116,9 @@
'cluster' => false,
'default' => [
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
'host' => env('REDIS_HOST', '127.0.0.1'),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
],
],