ActionCable不传输消息

时间:2017-05-15 06:50:25

标签: ruby-on-rails ruby passenger ruby-on-rails-5 actioncable

我正在轨道5中实施动作电缆,它在本地完美运行,但在分段和生产中,在将消息发送到动作后,电缆轨道记录器就是这个。

[ActionCable] Broadcasting to chats_4: {:id=>"message_97", :message=>"88", :user=>"John", :time=>"15-May-17 06:38 am", :chatroom_id=>4, :file=>nil}

但它没有向订阅者传输,浏览器控制台给出了错误

Firefox can’t establish a connection to the server at wss://demo.xyz.com/cable.
The connection to wss://demo.xyz.com/cable was interrupted while the page was loading.

我的环境配置如下。

 config.action_cable.url = "wss://demo.xyz.com/cable"
 config.action_cable.allowed_request_origins = ['https://demo.xyz.com', 'http://demo.xyz.com']

我在乘客+ nginx中托管应用程序

location /cable {
          passenger_app_group_name xyz_websocket;
           passenger_force_max_concurrent_requests_per_process 0;
         }

我的nginx日志说

2017/05/15 06:43:30 [error] 13412#0: *675 open() "/home/test/apps/xyz/current/public/cable" failed (2: No such file or directory), client: 103.xix.204.xx, server: https://demo.xyz.com, request: "GET /cable HTTP/1.1", host: "demo.xyz.com"

帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

可以阅读有关设置here的更多信息,但我要确保您单独安装有线服务器 - 听起来像“乘客实际上坚持将其作为单独的进程运行”

相关问题