Redis connection setup in .env

This commit is contained in:
Roman Kinyakin 2015-10-26 22:13:51 +06:00
parent 7568940c71
commit 86d1dfcf51
1 changed files with 3 additions and 3 deletions

View File

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