fix(broadcasting): ignore self-signed certificates for Reverb in local development

This commit is contained in:
idevakk
2026-03-05 16:07:27 +05:30
parent 62d8f15919
commit b981b6998f

View File

@@ -42,7 +42,7 @@ return [
'useTLS' => env('REVERB_SCHEME', 'https') === 'https',
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
'verify' => env('REVERB_SCHEME', 'https') === 'https' && env('APP_ENV') === 'local' ? false : true,
],
],