天道不一定酬所有勤
但是,天道只酬勤

nginx开启websocket连接(ws,wss)

在nginx配置文件中添加两个地方
在http模块中添加:

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

在该域名的server模块中增加:

server {
        listen       80;
        server_name  域名;
        #以下是增加websocket配置,开发的请求配置是ws://域名/webSocket/17816016/1这个样式的
        #所以将这个后端域名中对webSocket进行配置,
        location /webSocket/ {
                 proxy_pass http://localhost:7033;
                 proxy_http_version 1.1;
                 proxy_set_header Upgrade $http_upgrade;
                 proxy_set_header Connection "upgrade";
                }
}

配置完成后,记得检查nginx配置文件是否正确,没问题在重新加载nginx

nginx -t
nginx -s reload

在一个测试网站上检验一下(http://coolaf.com/tool/chattest)

未经允许不得转载:java技术小栈 » nginx开启websocket连接(ws,wss)
分享到

评论 抢沙发