Skip to content
Snippets Groups Projects
Commit 4a428e1d authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixed wrong connections

parent cea3e6fc
No related branches found
No related tags found
2 merge requests!1904Development,!1903Resolve "Switch to redis cluster"
...@@ -134,15 +134,16 @@ return [ ...@@ -134,15 +134,16 @@ return [
'database' => 0, 'database' => 0,
], ],
'clustercache' => [ "clusters" => [
'host' => env('REDIS_CACHE_HOST', 'localhost'), 'clustercache' => [[
'password' => env('REDIS_CACHE_PASSWORD', null), 'host' => env('REDIS_CACHE_HOST', 'localhost'),
'port' => env('REDIS_CACHE_PORT', 6379), 'password' => env('REDIS_CACHE_PASSWORD', null),
'database' => 0, 'port' => env('REDIS_CACHE_PORT', 6379),
'options' => [ 'database' => 0,
'cluster' => 'redis', ]],
], ]
],
], ],
]; ];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment