本文主要是介绍nginx ws长连接配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
nginx ws长连接配置
http根节点下配上
map $http_upgrade $connection_upgrade {default upgrade;'' close;}
如下:
server服务节点下,后端接口的代理配置
proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection $connection_upgrade;proxy_set_header Host $host;
这篇关于nginx ws长连接配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!