我在Nginx上使用mod页面速度,我注意到它正在设置etag:w \" 0"在我不想要的图像上(因为它们是由其他服务设置的)。
我发现Apache的以下配置显然解决了这个问题:
<FilesMatch "\.(jpg|jpeg|gif|png|js|css)$">
Header unset Etag
Header set Cache-control "public, max-age=600"
</FilesMatch>
&#13;
是否有Nginx等效来克服这个问题?
答案 0 :(得分:0)
最终找到了Nginx等价物:
location /mod_pagespeed_example {
location ~* \.(jpg|jpeg|gif|png|js|css)$ {
add_header Cache-Control "public, max-age=600";
}
}
https://developers.google.com/speed/pagespeed/module/filter-cache-extend