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

Commit 91c24c3

Browse files
committed
Add some extra ENV variables for the config file
1 parent da7fe0c commit 91c24c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/websockets.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@
164164

165165
'replication' => [
166166

167-
'driver' => 'local',
167+
'driver' => env('LARAVEL_WEBSOCKETS_REPLICATION_DRIVER', 'local'),
168168

169169
'redis' => [
170170

171-
'connection' => 'default',
171+
'connection' => env('LARAVEL_WEBSOCKETS_REPLICATION_CONNECTION', 'default'),
172172

173173
],
174174

@@ -188,7 +188,7 @@
188188
|
189189
*/
190190

191-
'driver' => 'database',
191+
'driver' => env('LARAVEL_WEBSOCKETS_STATISTICS_DRIVER', 'database'),
192192

193193
'database' => [
194194

0 commit comments

Comments
 (0)