Skip to content

Instantly share code, notes, and snippets.

@rmax
Created September 23, 2009 14:59
Show Gist options
  • Save rmax/192056 to your computer and use it in GitHub Desktop.
Save rmax/192056 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name server.com server.local;
access_log /home/rho/Webroot/app/logs/access.log;
error_log /home/rho/Webroot/app/logs/error.log;
location ^~ /static {
root /home/rho/Webroot/app/website; # location of static directory
expires max;
}
location / {
proxy_redirect false;
proxy_pass http://127.0.0.1:8000; # tornado instance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment