nginx expires config
1 2 location ~* ^.+\.(js|css|php|jpg|jpeg|gif|png|pdf|zip|rar)$ { 3 root /var/www/apps/myapp/public; 4 access_log off; 5 expires 7d; 6 }
DZone Snippets > indiehead > expires
12952 users tagging and storing useful source code snippets
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
John http://www.red91.com
1 2 location ~* ^.+\.(js|css|php|jpg|jpeg|gif|png|pdf|zip|rar)$ { 3 root /var/www/apps/myapp/public; 4 access_log off; 5 expires 7d; 6 }