12

如果我有压缩的 Rails 资产,我是否必须配置 nginx 来压缩资产(gzip 设置为打开)rake assets:precompile?我的意思是这有意义吗?性能会更好还是更差?谢谢!

4

5 回答 5

18

做 rake assets:precompile 并且你必须配置 nginx 来发送 gzip 版本的文件,我使用这个配置。

user www-data www-data;
worker_processes 4;

pid /var/run/nginx.pid;

events{
    worker_connections 2048;
    use epoll;
}

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

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

    server_tokens off;
    server_name_in_redirect off;
    ignore_invalid_headers on;

    gzip off;
    sendfile on;

    upstream reverse-proxy{
        server 127.0.0.1:3000;
        server 127.0.0.1:3001;
        server 127.0.0.1:3002;
        server 127.0.0.1:3003;
    }   

    server{
        listen 80;
        server_name _;
        root /home/www-data/my_website/public;

        client_max_body_size 10M;
        client_body_buffer_size 512k;

        location ~ ^/assets/ {
            gzip_static on;

            add_header Cache-Control public;
            expires 4w;
            gzip on;
            gzip_vary on;
            gzip_proxied any;
            gzip_disable "MSIE [1-6]\.";
            gzip_comp_level 6;
            gzip_types application/x-javascript text/css text/html image/x-icon image/png image/jpeg image/gif;
        }

        location / {
            try_files $uri @ruby;
        }

               location @ruby {
                        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_redirect    off;

                        proxy_pass http://reverse-proxy;
                }

    }

}
于 2012-12-06T03:23:42.973 回答
7

你不可以。它们不是同一种压缩。运行时rake assets:precompile,您真正要做的就是将一堆文件合并到一个文件中并将其转储到磁盘上。实际上,根据官方文档,它是两个文件:

预编译文件时,Sprockets 还会为您的资产创建一个 gzip 压缩 (.gz) 版本。Web 服务器通常配置为使用中等压缩比作为折衷方案,但由于预编译只发生一次,Sprockets 使用最大压缩比,从而将数据传输的大小降至最低。另一方面,可以将 Web 服务器配置为直接从磁盘提供压缩内容,而不是对非压缩文件本身进行压缩。

这对您很重要,因为它允许您根据需要使用 gzip,但它不会强迫您这样做。Gzip 压缩是真正的压缩(不仅仅是连接文件),它减少了您必须传输的数据量,但以牺牲处理器能力(压缩和解压缩)为代价。根据页面大小和您(和您的用户)的硬件,它可能会显着改善您的网站。

于 2012-12-06T00:20:39.033 回答
4

这是一个完整的配置(我在我的网站上使用它):

一般配置

http {
passenger_root /usr/local/lib/ruby/gems/1.9.1/gems/passenger-4.0.5;
passenger_ruby /usr/local/bin/ruby;

include mime.types;

default_type application/octet-stream;
server_tokens off;
sendfile on;
keepalive_timeout 70;

gzip on;
gzip_http_version 1.1;
gzip_disable "msie6";
gzip_vary on;
gzip_min_length 1100;
gzip_buffers 64 8k;
gzip_comp_level 3;
gzip_proxied any;
gzip_types text/plain text/css application/x-javascript text/xml application/xml;


add_header Strict-Transport-Security "max-age=16070400; includeSubdomains";
add_header X-Frame-Options DENY;

limit_req_zone $binary_remote_addr zone=one:10m rate=10r/s;

include /opt/nginx/conf/nginx_host.conf;
}

/opt/nginx/conf/nginx_host.conf的内容;

主机配置

server {
listen 80;
server_name *.domain.com;
root APP_PATH/current/public;
        passenger_enabled on;
        access_log off;

error_log /dev/null;

# Cross domain webfont access
location ~* \.(?:ttf|ttc|otf|eot|woff|font.css)$ {
    add_header "Access-Control-Allow-Origin" "*";
    expires 1M;
    access_log off;
    add_header Cache-Control "public";
}

location ~* \.(ico|css|gif|jpe?g|png)(\?[0-9]+)?$ {
    expires max;
}

location ~ ^/(assets|uploaded_assets|system)/  {
  root   /home/travelobd/rails_apps/travelobd/current/public;
  gzip_static on; # to serve pre-gzipped version
  expires max;
  add_header Cache-Control public;
 }
}

对于服务资产:

server {
        listen 80;
        server_name     static.domain.com;
        root APP_PATH/current/public;
        location / {
                if ($request_filename ~ "\.(jpg|css|gif|png|swf|ico|js)$") {
                        break;
                }
        return 404;
        }
        }
 
于 2013-06-24T16:31:48.300 回答
1

是的,如果你想提高性能,你应该这样做。

只需将以下块添加到您的站点配置中:

location ~ ^/(assets)/  {
  root /path/to/public; # CHANGE THIS
  gzip_static on; # to serve pre-gzipped version
  expires max;
  add_header Cache-Control public;
}

更改配置中的根路径。这就是它的全部。

RecommendationFromDocumentation™: http: //guides.rubyonrails.org/asset_pipeline.html

于 2015-01-15T13:10:10.560 回答
0

对我有用的是配置 Nginx:

location ~ ^/(assets)/ {
  gzip_static on;
}

然后在 application.rb 中:

  config.middleware.insert_before(Rack::Sendfile, Rack::Deflater)

  # Compress JavaScripts and CSS.
  config.assets.compress = true
  config.assets.js_compressor = Uglifier.new(mangle: false)
于 2016-11-27T00:37:50.197 回答