Nginx教程

nginx 反向代理 ws 同时兼容 http

本文主要是介绍nginx 反向代理 ws 同时兼容 http,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

   #自定义变量 $connection_upgrade
    map $http_upgrade $connection_upgrade { 
        default          keep-alive;  #默认为keep-alive 可以支持 一般http请求
        'websocket'      upgrade;     #如果为websocket 则为 upgrade 可升级的。
    }

server {
        ...
 
        location /chat/ {
            proxy_pass http://backend;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade; #此处配置 上面定义的变量
            proxy_set_header Connection $connection_upgrade;
        }
    }

这篇关于nginx 反向代理 ws 同时兼容 http的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!