当Vary标头没有被忽略时,Nginx不会缓存

时间:2016-11-09 09:51:38

标签: caching nginx

首先:我对Nginx没有多少经验。

我会直接解决问题:

Nginx配置:

    user www-data;
    worker_processes auto;
    pid /run/nginx.pid;
    events {
        worker_connections 2048;
        multi_accept on;
     }
  http {
     proxy_cache_path /var/nginx_cache levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=10g;

upstream server {
    server -removed-;
 }

 server {
    listen 80;
    server_name -removed-;
    location / {
            gzip on;
            gzip_disable "MSIE [1-6]\.(?!.*SV1)";
            gzip_http_version 1.1;
            gzip_min_length 500;
            gzip_vary on;
            gzip_proxied any;
            gzip_types
                            application/atom+xml
                            application/javascript
                            application/json
                            application/ld+json
                            application/manifest+json
                            application/rss+xml
                            application/vnd.geo+json
                            application/vnd.ms-fontobject
                            application/x-font-ttf
                            application/x-web-app-manifest+json
                            application/xhtml+xml
                            application/xml
                            font/opentype
                            image/bmp
                            image/svg+xml
                            image/x-icon
                            text/cache-manifest
                            text/css
                            text/plain
                            text/vcard
                            text/vnd.rim.location.xloc
                            text/vtt
                            text/x-component
                            text/x-cross-domain-policy
                            text/js
                            text/xml
                            text/javascript;


                             add_header X-Cache-Status $upstream_cache_status;
                             proxy_cache STATIC;
                             proxy_set_header Host $host;

           ---->                  proxy_ignore_headers Vary;    <-----

                             proxy_cache_key $host$uri$is_args$args;
                             proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504;
                             proxy_pass -removed-;

    }



  }
 }

当行&#39; proxy_ignore_headers变化时;&#39;设置,一切都将缓存,包括HTML页面。当我删除此行时,除了HTML页面之外,所有内容都会被缓存。为什么是这样?

我希望即使原始服务器发送Vary-header,Nginx也会缓存HTML页面。

我希望有人可以帮助我:)。

响应标题是:

变化:主机,内容语言,内容类型,内容编码

1 个答案:

答案 0 :(得分:0)

修正:

在Nginx的源代码中,Vary标头最多使用42个字符。在我的情况下,51个字符因此我的Vary标题被处理为Vary:*(无缓存)。将最大值设置为84可以修复它。

本文更深入地解释了它。

https://thedotproduct.org/nginx-vary-header-handling/

对那篇发短文的人说的话。