on-rails-actioncable-puma-nginx-ssl

llmtgqce  于 2021-06-09  发布在  Redis
关注(0)|答案(0)|浏览(163)

我对actioncable完全陌生。。。正在尝试在Rails6.0应用程序(nginx+puma)上设置操作电缆。我还要说我的环境是在云上的(digitalocean.com),这就是ssl。
我的配置/cable.yml:

development:
  adapter: redis
  url: redis://localhost:6379

my config/environments/development.rb:我刚刚添加了以下几行

config.action_cable.allowed_request_origins = ["https://my.url.com/"]
config.action_cable.url = "ws://localhost:3000/cable"

当然:my.url.com是我的域名。
我得到这个错误:

WebSocket connection to 'wss://my.url.com/cable' failed: WebSocket is closed before the connection is established.

有人有主意吗?
多谢:-)

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题