- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 ActionCable 和 Rails 5 部署到生产服务器 (DigitalOcean)。我已按照此处 Gorails 视频中提到的所有步骤进行操作:https://gorails.com/episodes/deploy-actioncable-and-rails-5
该应用程序是使用 Phusion Passenger + Nginx + Capistrano 部署的。
当我尝试在生产中检查我的网站时,我在浏览器的控制台上收到此错误:WebSocket connection to 'ws://139.59.175.34/cable' failed: Error during WebSocket handshake: Unexpected response code: 404
这些是我的设置:
/etc/nginx/sites-enabled/default
server {
listen 80;
listen [::]:80 ipv6only=on;
server_name my_server_domain;
passenger_enabled on;
rails_env production;
root /home/deploy/my_app_domain/current/public;
# ActionCabel config (disable this if u r not using it)
location /cable {
passenger_app_group_name actioncable_websocket;
passenger_force_max_concurrent_requests_per_process 0;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
config.action_cable.url = "/cable"
config.action_cable.allowed_request_origins = ["http://139.59.175.34"]
(function() {
this.App || (this.App = {});
App.cable = ActionCable.createConsumer("/cable");
}).call(this);
config/production.rb
上的 ActionCable 配置到:
config.action_cable.url = [/ws:\/\/*/, /wss:\/\/*/]
config.action_cable.allowed_request_origins = [/http:\/\/*/, /https:\/\/*/]
WebSocket error occurred: One or more reserved bits are on: reserved1 = 1, reserved2 = 0, reserved3 = 0
最佳答案
您的配置看起来正确。
如果您正在运行防火墙,则可能会发生此问题。
检查你的 iptables 配置(linux)是否有什么东西阻止了它(虽然我没有特定的代码行给你)。
如果您使用的是 Windows,请检查是否有“防病毒”或“防火墙”拦截/阻止这些位。我听说 Node32 是阻止 websockets 的一个很好的候选者。
更新:您也可以尝试使用 wss://139.59.175.34/cable
连接吗?而不是 ws://139.59.175.34/cable
? (确保您的 NGinx 使用 SSL 进行代理)。 https://docs.nginx.com/nginx/admin-guide/security-controls/securing-http-traffic-upstream/
关于ruby-on-rails - ActionCable Rails 5(乘客)-失败 : Error during WebSocket handshake: Unexpected response code: 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52175211/
我安装了 Apache、Passenger 和 Sinatra,并部署了一个应用程序。尝试访问时出错: An error occurred while starting up the preloade
我在使用 RJB 和 Passenger 时遇到一些问题。 我的系统:Debian 6 Java JDK 7 Apache2 + Passenger Ruby 1.9.2 Rails 3.2.6 我正
我试图在 CentOS 6.3 上使用 mod_passenger 将 Redmine 部署到 Apache 但出现错误: The application spawner server exited
我已经尝试过这里推荐的方法:Passenger: internal server error , 但在 config.ru 中没有发现对 STDOUT 的引用 我在 ruby-2.0.0-p247
在本地,我的应用程序运行良好并写入其日志。 我的生产服务器运行 CentOS,Apache 服务器运行 Passenger。尝试调试时,我注意到我的日志文件没有被写入。我做的第一件事是 chmod 0
我将 Rails 3.2 与乘客 + nginx 一起使用。当数据库服务器关闭时,我想显示漂亮的自定义 500 页面。当我的 rails 应用程序无法启动时,我想显示一些内容。这是我的 nginx:
按照教程 here提出了这个错误: The following packages have unmet dependencies: nginx-extras : Depends: perlapi-5
当我尝试在 Ruby on Rails 上传照片时使用 Paperclip在我的本地机器上,它运行良好。 当我尝试在带有 Apache 和 CentOS 的 Linux(Phusion Passeng
有一次,我在我的系统上使用 NGINX、Rails 和Passenger 一切都运行良好。 昨天我重新安装了Passenger,现在passenger-install-nginx-module失败。
Started GET "/home" for 117.55.68.xxx at 2012-11-05 22:56:06 +0900 Processing by PageController#home
我正在设置一个服务器,以使用Passenger在Fedora 12上运行Ruby on Rails应用程序。 我现在处于安装Passenger的阶段,按照规定进行设置,但是在重新启动Apache时出现
我们在 Apache 2.2 (CentOS 6.latest) 后面使用 Passenger 4.0.59 和 Rails 3.2。 在/etc/httpd/conf/httpd.conf 中,我们
我在服务器上部署 Rails 应用程序时遇到问题。我正在部署使用 Passenger 来提供页面。当我启动服务器时,我的页面上列出了以下错误。似乎我安装的 passenger 版本引用了 ruby
我正在尝试使用 Phusion Passenger 运行简单的 RoR 应用程序。在转到本地主机的那一刻,我看到了主题的错误。事实上,我没有任何待处理的迁移: Status Migrat
我正在尝试通过 Capistrano 将 Rails 应用程序部署到 VPS。我在 VPS 上安装了 passenger standalone 并使用 capistrano-passenger具有默认
我用 Nginx 安装了 Phusion Passenger,将 Nginx 配置为指向正确的目录,然后我运行 webapp 目录,这已经下载了 gemfile,但找不到 gem。 当我访问该网站时,
我试图用 Apache2 和 ruby 2.0 安装 passenger,但我在安装时遇到了这行错误: passenger-install-apache2-module 错误: ---------
我在我的生产应用程序上收到此错误,我仍然没有修复它的线索。该应用程序在开发模式下运行良好,但在我的生产服务器上出现捆绑程序错误。我正在通过 RVM + Nginx + 乘客使用带有 ruby 1.
当我尝试访问我的服务器时,出现以下错误 App 13379 stdout: App 13379 stdout: [ 2015-02-02 05:28:59.1782 13226/7fb5d969970
我已经在服务器(Ubuntu 12.04 LTS)上安装了 redmine 2.1,它现在会产生 500 Server 错误消息。 我已配置为使用 apache 乘客并通过安装 xxxx:/usr/l
我是一名优秀的程序员,十分优秀!