Skip to content

Commit 5daa02c

Browse files
Shorten pusher host config (laravel#6009)
* Shorten pusher host config * Update broadcasting.php Co-authored-by: Taylor Otwell <[email protected]>
1 parent 5fb72c0 commit 5daa02c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/broadcasting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
'secret' => env('PUSHER_APP_SECRET'),
3737
'app_id' => env('PUSHER_APP_ID'),
3838
'options' => [
39-
'host' => env('PUSHER_HOST', 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com',
39+
'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com',
4040
'port' => env('PUSHER_PORT', 443),
4141
'scheme' => env('PUSHER_SCHEME', 'https'),
4242
'encrypted' => true,

0 commit comments

Comments
 (0)