From 91c24c30e81c675ed813ef39a1ccbea075f2f69e Mon Sep 17 00:00:00 2001 From: Nathan Rzepecki Date: Fri, 21 Aug 2020 10:27:36 +0800 Subject: [PATCH] Add some extra ENV variables for the config file --- config/websockets.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/websockets.php b/config/websockets.php index bddb3d5..6c5a6ec 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -164,11 +164,11 @@ return [ 'replication' => [ - 'driver' => 'local', + 'driver' => env('LARAVEL_WEBSOCKETS_REPLICATION_DRIVER', 'local'), 'redis' => [ - 'connection' => 'default', + 'connection' => env('LARAVEL_WEBSOCKETS_REPLICATION_CONNECTION', 'default'), ], @@ -188,7 +188,7 @@ return [ | */ - 'driver' => 'database', + 'driver' => env('LARAVEL_WEBSOCKETS_STATISTICS_DRIVER', 'database'), 'database' => [