Shorten pusher host config (#6009)

* Shorten pusher host config

* Update broadcasting.php

Co-authored-by: Taylor Otwell <[email protected]>
This commit is contained in:
Bùi Thế Hạnh
2022-10-11 08:43:53 -05:00
committed by GitHub
co-authored by Taylor Otwell
parent 5fb72c0d92
commit 5daa02c70b
+1 -1
View File
@@ -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,