Add redis connection env
This commit is contained in:
parent
40e06ed430
commit
cd86b0cbdd
3 changed files with 3 additions and 3 deletions
|
|
@ -43,7 +43,7 @@ return [
|
|||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'connection' => env('REDIS_BROADCAST_CONNECTION', 'default'),
|
||||
],
|
||||
|
||||
'log' => [
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ return [
|
|||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'cache',
|
||||
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ return [
|
|||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => 90000000,
|
||||
'block_for' => null,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue