OpenSource CLI-App to install and handle stuff related to Web-Server
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.

11 lines
207 B

4 years ago
  1. location ~* \.(?:manifest|appcache|html?|xml|json)$ {
  2. access_log off;
  3. log_not_found off;
  4. expires -1;
  5. }
  6. location ~* \.(?:rss|atom)$ {
  7. access_log off;
  8. log_not_found off;
  9. expires 1h;
  10. }