宝塔 使用 小程序wss

首先申请号ssl 证书,安装好
服务内建立自己的tcp 服务
然后通过nginx 转发 到自己的进程内
比如下面这样写,等于,wss://xxxxx.com/wss 就转发到了 服务器内的127.0.0.1:2347服务。
这样微信小程序就可以正常使用wss服务了
具体转发可以放在 文件配置或者 伪静态里面
建议放在伪静态里面容易管理
宝塔 使用 小程序wss_第1张图片

注意下面的配置 是,在400s 以内必须进行一次请求,这里需要使用心跳
location /wss {
	proxy_pass http://127.0.0.1:2347;
	proxy_read_timeout 400s;
	proxy_http_version 1.1;
	proxy_set_header Upgrade $http_upgrade;
	proxy_set_header Connection "Upgrade";
	proxy_set_header X-Real-IP $remote_addr;
}

你可能感兴趣的:(小程序,nginx,https)