2016-03-28 38 views
9

Ho recentemente cambiato il mio progetto di binari da Rails4 a 5.0.0.beta3 per utilizzare l'eccezionale ActionCable.Come configurare ActionCable con Nginx e Unicorn in produzione?

Il mio server ActionCable viene eseguito all'interno di unicorno. Nello sviluppo funziona tutto bene. Nella produzione Ho

Started GET "/cable" for xxx.xxx.xxx.xxx at 2016-03-28 18:06:38 +0300 
Started GET "/cable/" [WebSocket] for xxx.xxx.xxx.xxx at 2016-03-28 18:06 
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) 
Registered connection (189772ff-6229-48f1-ae7f-d9a96ad3a6c3) 
Finished "/cable/" [WebSocket] for xxx.xxx.xxx.xxx at 2016-03-28 18:06:35 

E questo messaggio ripete più e più volte in un ciclo.

Ho provato un sacco di opzioni a StackOverflow per gestire questo, ma nulla aiuta. mio nginx config:

upstream unicorn { 
    server unix:/tmp/unicorn.my_app.sock fail_timeout=0; 
} 

server { 
    server_name www.my_app.com; 
    return 301 $scheme://my_app.com$request_uri; 
} 

server { 
    listen 80 default deferred; 
    server_name my_app.com; 
    root /var/www/my_app/current/public; 

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

    try_files $uri/index.html $uri @unicorn; 
    location @unicorn { 
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    proxy_set_header Host $http_host; 
    proxy_redirect off; 
    proxy_pass http://unicorn; 
    } 

    location /cable { 
    proxy_pass http://unicorn/cable; 
    proxy_http_version 1.1; 
    proxy_set_header Upgrade websocket; 
    proxy_set_header Connection Upgrade; 
    proxy_set_header X-Real-IP $remote_addr; 
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    } 

    error_page 500 502 503 504 /500.html; 
    keepalive_timeout 5; 
} 

per essere sicuri che la richiesta è consentito Sono temporaneamente utilizzare questo codice in inizializzatori: ActionCable.server.config.disable_request_forgery_protection = true

Il mio file cable.coffee

@App ||= {} 
App.cable = ActionCable.createConsumer "/cable" 

Il mio file config/cable.yml

production: 
adapter: redis 
url: redis://localhost:6379/1 

Non sono così esperto in questa domanda, quindi qualsiasi aiuto sarebbe fantastico.

+0

Avete 'mount actionCable.server => '/ cable'' nei percorsi? – siegy22

+0

@yzalavin Sei riuscito a risolvere questo? Sto vedendo lo stesso problema. –

+0

@R_G Sto riscontrando lo stesso problema. Sei riuscito a trovare i problemi? Da quello che ho un unicorno di debug non è in grado di inviare ping ai client e quindi il client sta tentando di riconnettersi. Quindi le istruzioni di connessione in loop. Non sono sicuro del motivo per cui il flusso nell'altra direzione non funziona – sethi

risposta

1

Ho implementato rack-timeout. L'impostazione dei timeout corretti ha corretto il mio problema. Il metodo corretto per impostare tali variabili è in una dichiarazione uso config.ru come segue:

use Rack::Timeout, service_timeout: 5 
0

Si tratta di configurazione che uso per il mio sito web, e sembra funzionare bene (Rails 5 + Nginx + Unicorn + Capistrano). Comprende che vedi nello snippet sono da h5bp/server-configs-nginx, ma non penso che potrebbero essere un motivo per cui la tua configurazione non funziona.

upstream example_app { 
    server unix:/home/username/www/example.com/current/tmp/sockets/unicorn.example.com.sock fail_timeout=0; 
} 

server { 
    listen 80; 
    server_name example.com www.example.com; 

    return 301 https://example.com$request_uri; 
} 

server { 
    listen 443 ssl; 
    server_name www.example.com; 

    include h5bp/directive-only/ssl.conf; 
    ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem; 
    ssl_certificate_key /etc/letsencrypt/live/www.example.com/privkey.pem; 

    return 301 https://example.com$request_uri; 
} 

server { 
    listen 443 ssl; 
    server_name example.com; 

    include h5bp/directive-only/ssl.conf; 
    ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem; 
    ssl_certificate_key /etc/letsencrypt/live/www.example.com/privkey.pem; 

    root /home/username/www/example.com/current/public; 

    # Set maximum request body size for uploads 
    client_max_body_size 25m; 

    try_files $uri/index.html $uri @unicorn; 
    location @unicorn { 
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    proxy_set_header Host $http_host; 
    proxy_set_header X-Forwarded-Proto https; 
    proxy_redirect off; 
    proxy_pass http://example_app; 
    } 

    location /cable { 
    proxy_pass http://example_app; 
    proxy_http_version 1.1; 
    proxy_set_header Upgrade websocket; 
    proxy_set_header Connection Upgrade; 

    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    proxy_set_header Host $http_host; 
    proxy_set_header X-Real-IP $remote_addr; 
    proxy_set_header X-Forwarded-Proto https; 
    proxy_redirect off; 
    } 

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

    charset utf-8; 
    server_tokens off; 

    error_page 404 /404.html; 

    include h5bp/basic.conf; 
} 

cable.yml

production: 
    adapter: redis 
    url: redis://localhost:6379/1 

cable.js

//= require action_cable 
//= require_self 
//= require_tree ./channels 

(function() { 
    this.App || (this.App = {}); 

    App.cable = ActionCable.createConsumer(); 

}).call(this); 
3

Nella sezione location /cable bisogno di aggiungere una linea proxy_set_header Host $http_host;

dovrebbe essere:

location /cable { 
    proxy_pass http://unicorn/cable; 
    proxy_http_version 1.1; 
    proxy_set_header Upgrade websocket; 
    proxy_set_header Connection Upgrade; 
    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; 
    } 
+0

questo ha funzionato per me :) –