From 5daa02c70b27212aea4b2e302c4ac5ba65b1e789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=B9i=20Th=E1=BA=BF=20H=E1=BA=A1nh?= Date: Tue, 11 Oct 2022 20:43:53 +0700 Subject: [PATCH] Shorten pusher host config (#6009) * Shorten pusher host config * Update broadcasting.php Co-authored-by: Taylor Otwell --- config/broadcasting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index 168824244..9e4d4aa44 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -36,7 +36,7 @@ return [ 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ - 'host' => env('PUSHER_HOST', 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', 'port' => env('PUSHER_PORT', 443), 'scheme' => env('PUSHER_SCHEME', 'https'), 'encrypted' => true,