Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- location ~ /\.(?!well-known).* {
- deny all;
- }
- location ~* \.(js|css|html)$ {
- expires 365d;
- add_header Cache-Control "public, no-transform";
- }
- location ~* \.(png|jpg|jpeg|gif|mp4|svg|woff2|woff|ttf|eot)$ {
- expires 365d;
- add_header Cache-Control "public, no-transform";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement