The WebSocket Secure (WSS) connection appears to be functioning, but when attempting to use Laravel's broadcasting events (as defined in the documentation here: https://laravel.com/docs/10.x/broadcasting#defining-broadcast-events), a cURL error is encountered.
Additionally, I followed the instructions outlined in the documentation (https://beyondco.de/docs/laravel-websockets/basic-usage/ssl) to correctly configure the SSL path.
openssl s_client -connect subdomain.domain.com:443 (working)
openssl s_client -connect subdoman.domain.com:6001 (error)
already tried
- php.ini using curl.cainfo=/path/to/cacert.pem
- verify=false
- httpd/apache conf
- guzzleHttp: verify=false
- laravel-websockets: verify=false
Additionally, I followed the instructions outlined in the documentation (https://beyondco.de/docs/laravel-websockets/basic-usage/ssl) to correctly configure the SSL path.
openssl s_client -connect subdomain.domain.com:443 (working)
openssl s_client -connect subdoman.domain.com:6001 (error)
already tried
- php.ini using curl.cainfo=/path/to/cacert.pem
- verify=false
- httpd/apache conf
- guzzleHttp: verify=false
- laravel-websockets: verify=false