如何更好地对此进行优化?
利用浏览器缓存以下可缓存资源: https://www.googletagmanager.com/gtag/js?id=UA-125039240-1(15 分钟) https://maps.googleapis.com/…XZsv5Am2kkAy4HOYqd6vd0k&callback = initMap (30分钟)https://www.google-analytics.com/analytics.js(2小时)
我的标题中有这个
<meta http-equiv="Expires" content="30">
此外,我的Nginx conf文件正在运行Gzip,并具有以下内容:
继续。
proxy_cache_path /tmp/nginx levels=1:2 keys_zone=my_zone:10m inactive=60m;
proxy_cache_key "$scheme$request_method$host$request_uri";
server {
listen 443 default_server;
listen [::]:443 default_server;
root /srv/www/removed.com/html;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name removed.com www.removed.com;
proxy_cache my_zone;
...
location ~* \.(js|css|png|jpg|jpeg|gif|svg|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
我该如何解决这三个问题?我认为我的代理缓存无法正常工作。