sarga filters

This commit is contained in:
merdan 2022-05-05 18:35:14 +05:00
parent 3d34d4ff76
commit be56b923ec
2 changed files with 10 additions and 9 deletions

View File

@ -36,15 +36,15 @@ return [
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'encrypted' => false,
'encrypted' => true,
'host' => env('PUSHER_HOST', '127.0.0.1'),
'port' => env('PUSHER_PORT', 472),
'schema' => 'http',
// 'useTLS' => true,
// 'curl_options' => [
// CURLOPT_SSL_VERIFYHOST => 0,
// CURLOPT_SSL_VERIFYPEER => 0,
// ]
'port' => env('PUSHER_PORT', 4433),
'schema' => 'https',
'useTLS' => true,
'curl_options' => [
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
]
],
],

View File

@ -31,7 +31,7 @@ return [
'capacity' => null,
'enable_client_messages' => false,
'enable_statistics' => true,
'encrypt' => false
'encrypt' => true
],
],
@ -136,6 +136,7 @@ return [
* Passphrase for your local_cert file.
*/
'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE', null),
'verify_peer' => false,
],
/*