From dfffbdb5d5fbd2f1d77335e044df7abc51d489b9 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Sat, 18 Jul 2020 14:51:15 +0800 Subject: [PATCH] Update broadcasting config --- config/broadcasting.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index 3bba110..cb53cf0 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -31,18 +31,21 @@ return [ 'connections' => [ 'pusher' => [ - 'driver' => 'pusher', - 'key' => env('PUSHER_APP_KEY'), - 'secret' => env('PUSHER_APP_SECRET'), - 'app_id' => env('PUSHER_APP_ID'), + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), 'options' => [ - 'cluster' => env('PUSHER_APP_CLUSTER'), - 'useTLS' => true, + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'encrypted' => false, + 'host' => '127.0.0.1', + 'port' => 6001, + 'scheme' => 'http', ], ], 'redis' => [ - 'driver' => 'redis', + 'driver' => 'redis', 'connection' => 'default', ],