1、apache 加载 proxy_module ,proxy_wstunnel_module 模块
2、apache 配置 ssl
# Proxy Config
SSLProxyEngine on
#监听的路径和转发的路径,需要输入https:// 和最后面的/
ProxyRequests Off
ProxyPass /wss ws://0.0.0.0:8585
ProxyPassReverse /wss ws://0.0.0.0:8585
3、小程序代码
var that = this;
wx.connectSocket({
url: "wss://www.xxx.com/wss"
});
4、GatewayWorker 代码
$gateway = new Gateway('websocket://0.0.0.0:8585', $context);
感谢分享
小程序聊天项目 https://www.popoim.com