Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

nginx expires config (See related posts)

  location ~* ^.+\.(js|css|php|jpg|jpeg|gif|png|pdf|zip|rar)$ {
    root   /var/www/apps/myapp/public;
    access_log   off;
    expires      7d;
  }

Comments on this post

indiehead posts on Apr 20, 2008 at 07:21
if you're using Typo as your blogging platform, remove js|css as it'll screw up your site's theme.

know this from personal experience.

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts