diff --git a/config/broadcasting.php b/config/broadcasting.php index 18fc28fba..30c9adab9 100755 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -35,11 +35,11 @@ return [ 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ -// 'cluster' => env('PUSHER_APP_CLUSTER'), -// 'encrypted' => true, + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'encrypted' => false, 'host' => env('PUSHER_HOST', '127.0.0.1'), 'port' => env('PUSHER_PORT', 472), -// 'schema' => 'https', + 'schema' => 'http', // 'useTLS' => true, // 'curl_options' => [ // CURLOPT_SSL_VERIFYHOST => 0, diff --git a/config/websockets.php b/config/websockets.php index 55b4c1d8a..6cd56c101 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -31,7 +31,7 @@ return [ 'capacity' => null, 'enable_client_messages' => false, 'enable_statistics' => true, -// 'encrypt' => true + 'encrypt' => false ], ],