我有一个使用 Puma 和 Nginx 1.10 部署到 vps 的聊天应用程序,我的 nginx 配置如下:
upstream websocket {
server 127.0.0.1:28080;
}
server {
location /cable {
proxy_pass http://websocket/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}
这是我的电缆 config.ru 文件:
require ::File.expand_path('../../config/environment', __FILE__)
Rails.application.eager_load!
ActionCable.server.config.disable_request_forgery_protection = true
run ActionCable.server
在环境/生产.rb
config.action_cable.allowed_request_origins = ['http://ahu.mydomain.ir', 'https://ahu.mydomain.ir']
config.action_cable.url = "ws://ahu.mydomain.ir/cable"
我的客户端通过代理服务器连接到 Internet,在 chrome 控制台中出现以下错误:
WebSocket 连接到“ws://ahu.mydomain.ir/cable”失败:通过代理服务器建立隧道失败
在另一个没有代理的客户端中,一切正常。