Redis
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> Redis

ActionCable trên AWS:Lỗi trong quá trình bắt tay WebSocket:Mã phản hồi không mong muốn:404

Để chạy ví dụ trò chuyện websocket trên một phiên bản triển khai Elastic Beanstalk duy nhất trong AWS, bạn sẽ cần thêm cấu hình proxy Nginx sau (Lưu ý:thay thế "env1.t3tiiauce6.us-west-2.elasticbeanstalk.com" bằng tên trang web của bạn):

.ebextensions / nginx_proxy.config

Các tệp
files:
  "/etc/nginx/conf.d/websockets.conf" :
    content: |
      upstream backend {
          server unix:///var/run/puma/my_app.sock;
      }

  server {
      listen 80;

      access_log /var/log/nginx/access.log;
      error_log /var/log/nginx/error.log;

      server_name env1.t3tiiauce6.us-west-2.elasticbeanstalk.com

      # prevents 502 bad gateway error
      large_client_header_buffers 8 32k;

      location / {
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header Host $http_host;
          proxy_set_header X-NginX-Proxy true;

          # prevents 502 bad gateway error
          proxy_buffers 8 32k;
          proxy_buffer_size 64k;

          proxy_pass http://backend;
          proxy_redirect off;

          location /assets {
            root /var/app/current/public;
          }

          # enables WS support
          location /cable {
            proxy_pass http://backend;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
          }
      }
  }

container_commands:
  01restart_nginx:
    command: "nginx -t && service nginx reload"

`




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Lạm dụng cURL để giao tiếp với Redis

  2. Tại sao Redis SortedSet sử dụng Skip List thay vì Balanced Tree?

  3. StackExchange.Redis sử dụng nhiều điểm cuối và kết nối như thế nào?

  4. Redis:có thể hết hạn một phần tử trong mảng hoặc tập hợp đã sắp xếp?

  5. định cấu hình redis auth trên sidekiq