1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 14:12:44 +01:00

Set sane defaults for broadcasting driver

This commit is contained in:
David Bomba 2023-03-21 07:06:16 +11:00
parent 3638dc45fb
commit 28c9398aba

View File

@ -32,9 +32,9 @@ return [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'key' => env('PUSHER_APP_KEY',''),
'secret' => env('PUSHER_APP_SECRET',''),
'app_id' => env('PUSHER_APP_ID',''),
'options' => [
'host' => env('PUSHER_HOST', 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com'),
'port' => env('PUSHER_PORT', 443),