本文主要是介绍websocket nignx 配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
server {
location /wss
{
proxy_pass http://127.0.0.1:8282;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “Upgrade”;
proxy_set_header X-Real-IP $remote_addr;
}
listen 443;
location / {} 站点的其它配置…
}
这篇关于websocket nignx 配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!