Skip to content

Instantly share code, notes, and snippets.

@jkronz
Created August 17, 2012 02:08
Show Gist options
  • Save jkronz/3375307 to your computer and use it in GitHub Desktop.
Save jkronz/3375307 to your computer and use it in GitHub Desktop.
server {
listen 8080;
root /Users/justin/Projects/lucena/QuantDesk/public;
index index.html;
#rewrite ^(.+)$ /index.html;
#location ~ ^/(.+)/$ {
#rewrite .* /index.html last;
#}
location ~* \.(ico|css|js|gif|jpe?g|png)$ {
expires max;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment