nginx 支持 WebSocket 协议

nginx.conf 的 http 段中:

map $http_upgrade $connection_upgrade {
    default upgrade;
    '' close;
}

vhost.conf 中:

location / {
    proxy_pass http://127.0.0.1:9875;
    proxy_set_header Host $host;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}
原创文章 9 获赞 3 访问量 940

猜你喜欢

转载自blog.csdn.net/zhang0402030211/article/details/105536827