Laravel Broadcasting
When using Laravel's event broadcasting feature within your application, soketi is even easier to configure. First, replace the default pusher
configuration in your application's config/broadcasting.php
file with the following configuration:
To configure the client for SSL, you should set the scheme
option to http
and the useTLS
option to true
Next up
Self-signed Certificates
Due to implementation changes in the Pusher PHP SDK, releases of the SDK since the 6.0
release do not support curl_options
; therefore, self-signed SSL certificates will fail certificate validation since certificate verification cannot be disabled. To bypass SSL Verification, you must use Pusher PHP SDK version 5.0.3
.
Last updated