在 Nginx 上运行的 Ruby on Rails 网站偶尔出现 502 错误

在 Nginx 上运行的 Ruby on Rails 网站偶尔出现 502 错误

我的 Ruby on Rails 网站偶尔会抛出 502 错误。该网站运行在 Nginx 上,安装了 Passenger,托管在运行 Ubuntu 10.04 的服务器上。似乎错误越来越少,但它们仍然会造成问题。

我猜测这与缓冲区大小有关,但不确定。

我知道这里还有其他几个遇到同样问题的人提出的问题,但这似乎很奇怪。

提前感谢任何帮助或建议。我可以为您提供您可能需要的任何规格或版本号。

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {
    worker_connections  1024;
}


http {
    passenger_root /usr/local/rvm/gems/ruby-1.9.3-p362/gems/passenger-3.0.18;
    passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.3-p362/ruby;

    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

gzip  on;

#buffer size
proxy_buffers 8 16k;
proxy_buffer_size 32k;
passenger_buffers 8 16k;
passenger_buffer_size 32k;
passenger_max_pool_size 200;    

server {
    listen 80;
    server_name thelist.io;
    rails_env production;
    root /var/www/thelist.io/public;
    passenger_enabled on;
}

server {
    listen 80;
    server_name grant.XXXX.com;
    root /home/jackson/XXXX.XXXXX.com/;
            location / {
        index  index.php;
    }

    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one

    location ~ /\.ht {
        deny  all;
    }
}

}

答案1

HTTP 错误 502 意味着您的应用程序没有及时响应 nginx,因此您可能需要扩大它。

当你使用 Rails 或其他 FastCGI 服务器(如 PHP-FPM)时,nginx 就是前端。

因此,nginx 作为代理,将数据重新传递给 FastCGI 服务器(在您的情况下为 Rails)。

确保 rails 能够使用服务器的所有资源,如果它不能满足你的请求量,你就需要扩大规模(创建更多的应用服务器实例并分配 webapp 的任务)

相关内容