diff --git a/config/broadcasting.php b/config/broadcasting.php index ebc3fb9cf136..83e8661ed50f 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -64,6 +64,22 @@ ], ], + 'sockudo' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'host' => env('PUSHER_HOST'), + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + 'ably' => [ 'driver' => 'ably', 'key' => env('ABLY_KEY'),