运维相关

nginx 开启websocket支持

2018-03-27  本文已影响103人  逆行的小电驴
会报错socket错误
在http模块增加红框中配置
    map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
    }
# websocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
上一篇下一篇

猜你喜欢

热点阅读