websockets
This commit is contained in:
parent
fc8b5579dc
commit
26d22624ca
|
|
@ -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,
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue