nginx-install/nginxsnippets/cache-js-css.conf

5 lines
100 B
Plaintext
Raw Permalink Normal View History

2024-10-13 00:56:32 +02:00
location ~* ^.+\.(css|js)$ {
expires 1y;
add_header Cache-Control "max-age=31600000, public";
}