在SockJS信息请求上获取HTTP 400“错误标头”

时间:2018-12-11 11:31:15

标签: nginx heroku websocket sockjs

我将Heroku路由器与Nginx代理(Nginx v1.9)配合使用,并且对于websocket sockjs信息请求,出现以下错误:

2018-12-11T10:50:33.428630+00:00 heroku[router]: 
cause="bad header" at=error code=H26 desc="Request 
Error" method=GET path= 
"/api/alarm/websock/alarms/info?t=1544489433394" 
host=myapp.herokuapp.com request_id=68787415-4758- 
46ba-8808-3addd8b5b7cf 
fwd="109.51.167.61,54.78.201.187" dyno= connect= 
service= status=400 bytes= protocol=https

在我的Nginx配置中,我具有以下位置块:

location /websock {
    proxy_pass https://myapp.herokuapp.com/api/alarm/websock/alarms;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "Upgrade";
}

如果我从位置块中删除了Upgrade和Connection标头,则不再发生http错误400“错误标头”,但是显然带有协议websocket的请求失败了……我怀疑没有发送Connection标头,或者正在发送,但为空。

值得一提的是,在我的本地Nginx服务器(v1.11)中,相同的配置可以完美地工作,并且我能够发出websocket请求。

有人知道为什么会这样以及如何解决吗?非常感谢

0 个答案:

没有答案