nginx 小程序及时聊天

    location /wss {
         proxy_pass http://项目

;
         proxy_set_header  Host $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forwarded-For $remote_addr;

         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "upgrade";
    }
即时聊天
原文地址:https://www.cnblogs.com/JANCHAN/p/7954166.html