From b981b6998fb333f8bc22b02434083159a579e0ae Mon Sep 17 00:00:00 2001 From: idevakk <219866223+idevakk@users.noreply.github.com> Date: Thu, 5 Mar 2026 16:07:27 +0530 Subject: [PATCH] fix(broadcasting): ignore self-signed certificates for Reverb in local development --- config/broadcasting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index ebc3fb9..c128d4e 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -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, ], ],