正确使用 nginx 作为 web 缓存的方法

正确使用 nginx 作为 web 缓存的方法

我正在尝试使用 nginx 作为 Web 缓存(但失败了)。

我的系统是 Ubuntu 16.04 服务器,其中 nginx 是 gunicorn Web 服务器(它是一个 Django 应用程序)的反向代理。

为了配置 Web 缓存,我在文件顶部添加了以下几行virtual host(在sites-available):

proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=static_cache:10m max_size=90m;
proxy_cache_key "$scheme$request_method$host$request_uri$is_args$args";
proxy_cache_valid 200 302 10m;
proxy_cache_valid 404 1m;

接下来,在主server范围内,我有以下代码片段(我在其中注入了缓存指令):

location @https_proxy_to_app {
    proxy_cache static_cache;
    proxy_cache_bypass $http_cache_control;
    add_header X-Proxy-Cache $upstream_cache_status;

    proxy_set_header X-Forwarded-Proto https;
    # additional proxy parameters
    include proxy_params;

    proxy_redirect off;
    proxy_pass http://app_server;
}

当我尝试 curl 静态资源 uri(这是测试缓存是否正常工作的唯一方法)时,这不会产生缓存命中或未命中。因此,缓存不起作用。我的意思是:

尝试curl -X GET -I https://example.com/static/css/my_app.css收益:

HTTP/1.1 200 OK
Server: nginx
Date: Wed, 22 Jan 2020 08:05:37 GMT
Content-Type: text/css
Content-Length: 26597
Last-Modified: Fri, 03 Jan 2020 14:23:59 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "5e0f4e7f-67e5"
Expires: Thu, 31 Dec 2037 23:55:55 GMT
Cache-Control: max-age=315360000
Strict-Transport-Security: max-age=63072000; includeSubDomains; preload
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Accept-Ranges: bytes

这是有问题的,因为它应该包括X-Proxy-Cache: HITX-Proxy-Cache: MISS。请帮我诊断问题。


以下是我的所有location区块(按出现顺序):

location ~* \.(?:ico|css|js|gif|jpg|jpeg|png|svg|woff|ttf|eot)$ {

    root /home/ubuntu/app/myproj/;
    access_log off;
    error_log off;

}

# shows number of connections at https://example.com/status_nginx
location /status_nginx {
    stub_status on;
    allow 127.0.0.1;
    deny all;
}

location / {

    limit_conn conn_limit_per_ip 20;
    limit_req zone=req_limit_per_ip burst=10 nodelay;

    limit_req_log_level warn;

    #proxy_pass_request_headers on;
    proxy_buffering on;
    proxy_buffers 24 4k;
    proxy_buffer_size 2k;
    proxy_busy_buffers_size 8k;

    try_files $uri @https_proxy_to_app;
}

location @https_proxy_to_app {

    proxy_cache static_cache;
    proxy_cache_bypass $http_cache_control;
    add_header X-Proxy-Cache $upstream_cache_status;

    proxy_set_header X-Forwarded-Proto https;
    # additional proxy parameters
    include proxy_params;

    proxy_redirect off;
    proxy_pass http://app_server;
}

答案1

您的.css文件使用配置中的以下块来提供:

location ~* \.(?:ico|css|js|gif|jpg|jpeg|png|svg|woff|ttf|eot)$
    root /home/ubuntu/app/myproj/;
    access_log off;
    error_log off;
}

这意味着 nginx 直接发送文件,而不使用上游服务器来处理请求。这意味着没有执行缓存。

如果您.css从列表中删除扩展并且您root没有指向可以找到此 CSS 文件的目录,那么请求将通过proxy_pass上游服务器进行。

只要上游服务器设置了合适的 HTTP 缓存标头,响应就会被缓存。

相关内容