Tempo limite do gateway NGINX Unicorn 504

4

Eu tentei tudo o que encontrei no Google por esta questão, mas - nada. Não funciona de qualquer maneira.

Meu padrão NGINX:

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

server {
    listen   80;
    root /home/rails/public;
    server_name _;
    index index.htm index.html;

    location / {
            try_files $uri/index.html $uri.html $uri @app;
    }

    location ~* ^.+\.(jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|mp3|flv|mpeg|avi)$ {
                    try_files $uri @app;
            }

     location @app {
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;
            proxy_pass http://app;
}
}

Registro de erros do NGINX:

    *12 connect() to unix:/tmp/unicorn.myapp.sock failed (2: No such file or directory) while connecting to upstream, client: 46.228.180.65, server: _, request: "GET / HTTP/1.1", upstream: "http://unix:/tmp/unicorn.myapp.sock:/", host: "178.62.102.154"

Você pode ajudar a consertar isso?

/home/rails/config/unicorn.rb

working_directory "/home/rails"
pid "/home/rails/pids/unicorn.pid"
stderr_path "/home/rails/log/unicorn.log"
stdout_path "/home/rails/log/unicorn.log"
listen "/tmp/unicorn.rails.sock"
worker_processes 2
timeout 30
    
por Orkhan 30.01.2015 / 08:52

1 resposta

0

Descubra as diferenças entre o nginx:

aplicativo upstream {servidor unix: / tmp / unicorn. myapp .sock fail_timeout = 0; }

E sua configuração de unicórnio:

escute "/tmp/unicorn.rails.sock"

Você provavelmente deve apontar para o mesmo socket ...

    
por 30.01.2015 / 09:44