Advertisement
Fany_VanDaal

Add Expires Headers (NGINX)

Apr 25th, 2019
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. location ~* \.(jpg|jpeg|png|gif|ico|css|js|pdf|svg)$ {
  2. expires 365d;
  3. }
  4. location ~* \.(pdf|html|swf)$ {
  5. expires 90d;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement