Nginx ignore query string for caching certain files
http://localhost/tiles/world/t/-1_0/-27_23.png?1381358434308
proxy_cache_key $scheme$proxy_host$uri$is_args$args;
改为
proxy_cache_key $scheme$proxy_host$uri;
就可以强制缓存了
Nginx ignore query string for caching certain files
http://localhost/tiles/world/t/-1_0/-27_23.png?1381358434308
proxy_cache_key $scheme$proxy_host$uri$is_args$args;
改为
proxy_cache_key $scheme$proxy_host$uri;
就可以强制缓存了