Commit 86d1dfcf authored by Roman Kinyakin's avatar Roman Kinyakin

Redis connection setup in .env

parent 7568940c
...@@ -116,9 +116,9 @@ return [ ...@@ -116,9 +116,9 @@ return [
'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),
], ],
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment