美文网首页
WebSocket connection to 'ws://..

WebSocket connection to 'ws://..

作者: yichen_china | 来源:发表于2022-01-28 15:09 被阅读0次

异常为:WebSocket connection to 'ws://...' failed: Error during WebSocket handshake: Unexpected response code: 200

此时,需要nginx配置支持websocket协议ws://,正确的nginx配置为:

location /api/ {
    rewrite ^/api/(.*)$ /$1 break;
    proxy_pass http://127.0.0.1:8585;
    ...
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

相关文章

网友评论

      本文标题:WebSocket connection to 'ws://..

      本文链接:https://www.haomeiwen.com/subject/ovaualtx.html