码迷,mamicode.com
首页 > Web开发 > 详细

nginx代理websocket错误处理

时间:2018-03-26 19:47:53      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:nginx代理websocket错误处理

错误贴图

技术分享图片技术分享图片

nginx日志报400 bad request错误

修改nginx配置文件

添加一下三行

server {

    listen 80;

    server_name  localhost;

    proxy_set_header Host $host:$server_port;

    proxy_set_header X-Real-Ip $remote_addr;

    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;


    location / {

        #proxy_set_header Host $host:$server_port;

        #proxy_set_header X-Real-Ip $remote_addr;

        #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://127.0.0.1:8000;

        proxy_http_version 1.1;    #添加

        proxy_set_header Upgrade $http_upgrade;    #添加

        proxy_set_header Connection "upgrade";    #添加

    }


}

nginx代理websocket错误处理

标签:nginx代理websocket错误处理

原文地址:http://blog.51cto.com/haoyonghui/2091322

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!