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

Add some extra ENV variables for the config file #477

Merged
merged 5 commits into from
Aug 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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