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'), 'app_id' => env('PUSHER_APP_ID'),
'options' => [ 'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'), 'cluster' => env('PUSHER_APP_CLUSTER'),
'encrypted' => false, 'encrypted' => true,
'host' => env('PUSHER_HOST', '127.0.0.1'), 'host' => env('PUSHER_HOST', '127.0.0.1'),
'port' => env('PUSHER_PORT', 472), 'port' => env('PUSHER_PORT', 4433),
'schema' => 'http', 'schema' => 'https',
// 'useTLS' => true, 'useTLS' => true,
// 'curl_options' => [ 'curl_options' => [
// CURLOPT_SSL_VERIFYHOST => 0, CURLOPT_SSL_VERIFYHOST => 0,
// CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_SSL_VERIFYPEER => 0,
// ] ]
], ],
], ],

View File

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