Skip to content

Instantly share code, notes, and snippets.

@hunterloftis
Created February 14, 2011 20:13
Show Gist options
  • Save hunterloftis/826456 to your computer and use it in GitHub Desktop.
Save hunterloftis/826456 to your computer and use it in GitHub Desktop.
# serve static files
location /images {
root /var/rapp/labs/app/public/;
expires 30d;
}
# pass dynamic content to node
location / {
proxy_pass http://127.0.0.1:90/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment