Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #477 from lionslair/2.x
Browse files Browse the repository at this point in the history
Add some extra ENV variables for the config file
  • Loading branch information
rennokki authored Aug 21, 2020
2 parents da7fe0c + 28d9c23 commit b4c7f34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/websockets.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@

'replication' => [

'driver' => 'local',
'driver' => env('LARAVEL_WEBSOCKETS_REPLICATION_DRIVER', 'local'),

'redis' => [

'connection' => 'default',
'connection' => env('LARAVEL_WEBSOCKETS_REPLICATION_CONNECTION', 'default'),

],

Expand All @@ -188,7 +188,7 @@
|
*/

'driver' => 'database',
'driver' => env('LARAVEL_WEBSOCKETS_STATISTICS_DRIVER', 'database'),

'database' => [

Expand Down

0 comments on commit b4c7f34

Please sign in to comment.