mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Add support for selecting Redis DB (#1247)
I happen to use a central instance of Redis for various projects and could use having this change integrated, allowing to specify from .env the database to use.
This commit is contained in:
parent
448d33c2c3
commit
69304fd97a
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ return [
|
|||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'password' => env('REDIS_PASSWORD', null),
|
||||
'port' => env('REDIS_PORT', 6379),
|
||||
'database' => 0,
|
||||
'database' => env('REDIS_DATABASE', 0),
|
||||
],
|
||||
],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue