Assets Caching:
######
## Cache Assets
######
# Caches images, icons, video, audio, HTC, etc.
location ~* \.(?:jpg|jpeg|gif|png|webp|ico|cur|gz|svg|mp4|mp3|ogg|ogv|webm|htc)$ {
add_header Cache-Control "public, no-transform";
expires 1y;
access_log off;
}
# Cache svgz files, but don't compress them.
location ~* \.svgz$ {
add_header Cache-Control "public, no-transform";
expires 1y;
gzip off;
access_log off;
}
# Cache CSS and JavaScript.
location ~* \.(?:css|js)$ {
add_header Cache-Control "public, no-transform";
expires 1y;
access_log off;
}
# Cache WebFonts.
location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ {
add_header Cache-Control "public, no-transform";
expires 1y;
access_log off;
}