3

我有一个 rails 3.0 应用程序,它的流量很大,它通过 Nginx 和 Unicorn 组合运行的应用程序。问题是独角兽和它的工作人员消耗了大量资源,并且由于我的应用程序的性质,从数据库中提取了很多记录,然后就像提供由这些数据库记录生成的几乎静态文件一样

我想知道你是否可以生成这种静态文件,缓存它们,通过 nginx 而不是通过 unicorn 应用程序为它们提供服务,以使用更少的资源并在 1000 次请求后重新加载缓存

我正在研究这方面,我对服务器配置了解不多,所以希望大家给我一些建议,那就太好了!

谢谢!

4

1 回答 1

3

我假设您的意思是我如何从 nginx 而不是 Unicorn 提供我的静态资产

我刚刚解决了这个问题,这是我的一个片段nginx.conf

# Prefer to serve static files directly from nginx to avoid unnecessary
# data copies from the application server.
try_files $uri/index.html $uri.html $uri @app;

# Set Far Future Cache on Static Assets
# All requests starting with /xyz/ where xyz is 
# one of the options below (~* == case insensitive)
location ~* ^/(images|javascripts|stylesheets)/ {
    # Per RFC2616 - 1 year maximum expiry
    # http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
    expires 1y;
    add_header Cache-Control public;

    # Some browsers still send conditional-GET requests if there's a
    # Last-Modified header or an ETag header even if they haven't
    # reached the expiry date sent in the Expires header.
    add_header Last-Modified "";
    add_header ETag "";
    break;
}

location @app { ... }

我正在使用 Rails 3.0.10,所以你需要类似的东西^/assets/。该~*指令告诉 nginx 进行不区分大小写的正则表达式比较。此外,您不需要像在其他语言中那样转义反斜杠。

这里是 Nginx 文档:http ://wiki.nginx.org/HttpCoreModule#location

于 2012-02-16T18:01:23.900 回答