Redis connection setup in .env
This commit is contained in:
parent
7568940c71
commit
86d1dfcf51
|
@ -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),
|
||||
],
|
||||
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue