You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
431 B

  1. location ~* \.(jpg|jpeg|gif|png|svg|ico)$ {
  2. access_log off;
  3. expires max;
  4. log_not_found off;
  5. error_page 404 = /empty;
  6. }
  7. location = /empty {
  8. expires 0;
  9. empty_gif;
  10. }
  11. location ~* \.(eot|ttf|woff|pdf|css|js)$ {
  12. access_log off;
  13. expires max;
  14. }
  15. location ~* \.(xml|xls)$ {
  16. add_header Cache-Control "no-cache";
  17. }
  18. location ~ /\. {
  19. deny all;
  20. }
  21. location ~* \.(tpl|ini|sh|conf|example) {
  22. deny all;
  23. }