簡體   English   中英

在 WebSocket 握手期間 Rails 6 Production ActionCable 錯誤

[英]Rails 6 Production ActionCable Error during WebSocket handshake

WebSocket connection to 'ws://my-ec2/cable' failed: 
Error during WebSocket handshake: Unexpected response code: 404

伙計們,我在這里經常看到這個(舊)問題,所以它看起來像是重復的。 但就我而言,我非常努力地修復這個錯誤,但我不能。 我也遵循此更正: https://stackoverflow.com/a/55715218/8478892但沒有成功。

我的 nginx.conf:

upstream puma {
    server unix:///home/ubuntu/apps/my_app/shared/tmp/sockets/my_app-puma.sock;
}

server {
    listen 80 default_server deferred;

    # If you're planning on using SSL (which you should), you can also go ahead and fill out the following server_name variable:
    # server_name example.com;

    # Don't forget to update these, too
    root /home/ubuntu/apps/my_app/current/public;
    access_log /var/log/nginx/nginx.access.log;
    error_log /var/log/nginx/nginx.error.log info;

    location ^~ /assets/ {
        gzip_static on;
        expires max;
        add_header Cache-Control public;
    }

    try_files $uri/index.html $uri @puma;
    location @puma {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;

        proxy_pass http://puma;
    }

    location /cable {
        proxy_pass http://puma;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass_request_headers on;

        proxy_buffering off;
        proxy_redirect off;
        break;
    }

    error_page 500 502 503 504 /500.html;
    client_max_body_size 10M;
    keepalive_timeout 10;
}

在我的 cable.yml 中:

production:
  url: redis://http://my-ec2.com:6379

local: &local
  url: redis://localhost:6379

development: *local
test: *local

還有我的環境/production.rb:

Rails.application.configure do

  config.cache_classes = true

  config.eager_load = true

  config.consider_all_requests_local       = false


  config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?



  config.active_storage.service = :local

  config.action_cable.mount_path = '/cable'
  config.action_cable.url = 'ws://my-ec2/cable'
  config.action_cable.allow_same_origin_as_host = true
  config.action_cable.allowed_request_origins = ["*"]


  config.log_level = :debug

  config.log_tags = [ :request_id ]



  config.action_mailer.perform_caching = false


  config.i18n.fallbacks = true

  config.active_support.deprecation = :notify

  config.log_formatter = ::Logger::Formatter.new


  if ENV["RAILS_LOG_TO_STDOUT"].present?
    logger           = ActiveSupport::Logger.new(STDOUT)
    logger.formatter = config.log_formatter
    config.logger    = ActiveSupport::TaggedLogging.new(logger)
  end

  config.active_record.dump_schema_after_migration = false

end

為遇到此問題的人考慮的一天:

在 localhost 上設置 ActionCable 已經是一場精彩的戰斗,但在生產環境中設置則是一場完整的戰爭。

您的機器上安裝了 redis 還是 docker 容器? 我認為您正在將它與 sidekiq 一起使用,並且/config/initializers下是否有任何 sidekiq/redis 初始化程序文件?

cable.yml中應該是

production:
  url: redis://redis:6379/0

幾天后,我設法自己解決了這個問題。 我的錯誤的主要原因是在我的環境/production.rb 文件中,我說可操作端點是我的 ec2 的公共 ip。 但實際上你應該把本地主機。 我使用了與 development.rb 中相同的配置:

production.rb 之前:

...
   config.action_cable.mount_path = '/cable'
   config.action_cable.url = 'ws://my_ec2/cable'
   config.action_cable.allow_same_origin_as_host = true
   config.action_cable.allowed_request_origins = ["*"]
...

production.rb 之后:

...
  config.action_cable.disable_request_forgery_protection = true
   config.action_cable.url = "ws://localhost:3000/cable"
   config.action_cable.allowed_request_origins = [/http:\/\/*/, /https:\/\/*/]
   config.action_cable.allowed_request_origins = /(\.dev$)|^localhost$/
...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM