workerman运行报错
SSL handshake error: stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
已经设置了不验证ssl
$connectiontext_option = array(
'ssl' => array(
//是否需要验证 SSL 证书。
'verify_peer' => false,
'verify_peer_name' => false,
//是否允许自签名证书。
'allow_self_signed' => true,
)
);