申请域名

申请一个wss的域名,wss.demo.com

申请SSL证书

下载nginx证书

配置wss

宝塔-网站-反向代理-添加反向代理-添加成功后-编辑配置文件
image.png

  1. #PROXY-START/api
  2. location /api
  3. {
  4. proxy_pass http://localhost:9976/api;
  5. proxy_http_version 1.1;
  6. proxy_set_header Upgrade $http_upgrade;
  7. proxy_set_header Connection "upgrade";
  8. }
  9. #PROXY-END/api

websocekt 在线测试

http://www.websocket-test.com/

image.png