Websocket-rails并不适用于Nginx和Unicorn的生产环境

时间:2014-04-29 11:50:08

标签: ruby-on-rails ruby nginx websocket unicorn

我有使用gem websocket-rails 0.7的Rails 3.2应用程序。

在开发机器上,一切正常

在生产环境中,我使用Nginx / 1.6作为代理服务器,使用Unicorn作为http服务器。 Thin用于独立模式(https://github.com/websocket-rails/websocket-rails/wiki/Standalone-Server-Mode之后)。

nginx config:

location /websocket {
   proxy_pass http://localhost:3001/websocket;
   proxy_http_version 1.1;
   proxy_set_header Upgrade $http_upgrade;
   proxy_set_header Connection "upgrade";
}

在后端方面,我有以下代码向客户发送通知

WebsocketRails[:callback_requests].trigger 'new', call_request

在客户端,我使用以下方式获得连接:

dispatcher = new WebSocketRails window.location.host + ':3001/websocket'
channel    = dispatcher.subscribe 'callback_requests'

但通知不会发给客户。

github上的相关问题 - github.com/websocket-rails/websocket-rails/issues/211

1 个答案:

答案 0 :(得分:5)

您的nginx个配置与/websocket/下的请求匹配,后跟/。这是/websocket/blah的目录组件。

如果您查看nginx访问日志文件,则会发现您对/websocket的请求被重定向到/websocket/

删除尾随/

location /websocket {
   proxy_pass http://localhost:3001/websocket;
   proxy_http_version 1.1;
   proxy_set_header Upgrade $http_upgrade;
   proxy_set_header Connection "upgrade";
}