如何使用Nginx和Passenger优化和扩展Ruby on Rails应用程序

时间:2017-07-05 10:55:36

标签: ruby-on-rails nginx passenger

我正在制作一款使用Ruby on Rails NginxPassenger的应用,性能一开始就很好但随着时间的推移(一小时或更长时间后)放慢速度,我需要重新启动Nginx才能再次提升性能。我是否知道如何使其更加优化和可扩展,并避免继续重新启动。谢谢,伙计们需要你的帮助。

1 个答案:

答案 0 :(得分:2)

您可以执行一些设置来优化Nginx服务器。

如果您的服务器root access并且Nginx已正确添加,则可以考虑进行一些更改。

1)运行sudo vim /etc/nginx/nginx.conf&根据您的需求考虑这些设置(不要将整个代码替换到您的服务器中,因为某些默认设置不在此处。只需添加您需要的内容)

user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
        worker_connections 768;
        multi_accept on;
        use                 epoll;
}

worker_rlimit_nofile 40000;

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        client_body_timeout 500s;
        client_header_timeout 500s;
        keepalive_timeout 500s;
        send_timeout 300s;
        types_hash_max_size 2048;
        # server_tokens off;
        client_max_body_size 100000M;
        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

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

        ##
        # SSL Settings
        ##

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
        ssl_prefer_server_ciphers on;

        ##
        # Logging Settings
        ##

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

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";
                gzip_vary on;
        # gzip_proxied any;
        gzip_comp_level 2;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        gzip_min_length  10240;
        gzip_proxied     expired no-cache no-store private auth;
        gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
        gzip_disable "MSIE [1-6]\.";

}

您可以根据应用和需求更改数字。

2)运行sudo vim /etc/nginx/sites-enabled/default&根据您的需求考虑这些设置(不要将整个代码替换到您的服务器中,因为某些默认设置不在此处。只需添加您需要的内容)

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        passenger_enabled on;

        # redirect server error pages to the static page /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    location ~*  \.(jpg|jpeg|png|gif|ico)$ {
        access_log        off;
        log_not_found     off;
        expires 30d;
    }

    location ~*  \.(js)$ {
        access_log        off;
        log_not_found     off;
        expires 150d;
    }
    location ~*  \.(css)$ {
        access_log        off;
        log_not_found     off;
        expires 150d;
    }
}

您可以根据应用和需求更改数字。

请在更改后记得restart ngnix

再次注意添加或删除的内容,再次不要复制&粘贴整个代码,因为某些默认设置不在此处。

另一件事是看看你的logs& tmp个文件/文件夹,因为您可以消除日志以减少内存和空间。您还可以查看tmp文件夹和设置。

您还可以考虑(推荐)在您的视图中进行缓存。如您所知,rails已经 Fragment and Russian doll caching 。缓存总是有助于提高响应时间。

如果您不熟悉缓存,还有一些名为渐进式渲染的东西。您可以使用gem 'progressive_render'watch this toturial

希望它有所帮助。