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

added connection for redis cache

parent 53120678
No related branches found
No related tags found
2 merge requests!1518Development,!1517Resolve "Use Redis as Cache backend"
...@@ -70,7 +70,7 @@ return [ ...@@ -70,7 +70,7 @@ return [
'redis' => [ 'redis' => [
'driver' => 'redis', 'driver' => 'redis',
'connection' => 'default', 'connection' => 'cache',
], ],
], ],
......
...@@ -118,6 +118,13 @@ return [ ...@@ -118,6 +118,13 @@ return [
'port' => env('REDIS_PORT', 6379), 'port' => env('REDIS_PORT', 6379),
'database' => 0, 'database' => 0,
], ],
'cache' => [
'host' => env('REDIS_CACHE_HOST', 'localhost'),
'password' => env('REDIS_CACHE_PASSWORD', null),
'port' => env('REDIS_CACHE_PORT', 6379),
'database' => 0,
],
], ],
]; ];
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