Skip to content

Instantly share code, notes, and snippets.

@clauswitt
Created October 22, 2013 08:08
Show Gist options
  • Save clauswitt/7096886 to your computer and use it in GitHub Desktop.
Save clauswitt/7096886 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name sitename.com;
access_log /var/log/nginx/sitename.access.log;
root /opt/sites/sitename.com;
index index.html index.htm;
location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf)$ {
expires max;
access_log off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment