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

当 Vary 标头未被忽略时,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-;

    }



}

}

当设置了行“proxy_ignore_headers Vary;”时,所有内容都会缓存,包括 HTML 页面。当我删除此行时,所有内容都会被缓存,但 HTML 页面除外。这是为什么?

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

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

响应标头为:

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

答案1

固定的:

在 Nginx 的源代码中,Vary 标头的最大长度为 42 个字符。在我的例子中,Vary 标头的最大长度为 51 个字符,因此我的 Vary 标头被处理为 Vary:* (no-cache)。将最大值设置为 84 可以解决这个问题。

本文对此进行了更深入的解释。

https://www.thedotproduct.org/posts/nginx-vary-header-handling.html

感谢发表该短文的人。

相关内容