websockets

This commit is contained in:
merdan 2022-04-24 15:23:53 +05:00
parent fc8b5579dc
commit 26d22624ca
1 changed files with 7 additions and 3 deletions

View File

@ -37,9 +37,13 @@ return [
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'encrypted' => true,
'host' => '127.0.0.1',
'port' => 472,
'schema' => 'https'
'host' => env('PUSHER_HOST', '127.0.0.1'),
'port' => env('PUSHER_PORT', 472),
'schema' => 'https',
'curl_options' => [
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
]
],
],