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

Commit b4c7f34

Browse files
authored
Merge pull request #477 from lionslair/2.x
Add some extra ENV variables for the config file
2 parents da7fe0c + 28d9c23 commit b4c7f34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/websockets.php

+3-3
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)