All pastes #2130139 Raw Edit

Mine

public text v1 · immutable
#2130139 ·published 2012-03-19 19:32 UTC
rendered paste body
#
# A virtual host using mix of IP-, name-, and port-based configuration
#

server {
    server_name {{ host_name }};

    location /static/ {
        root /opt/mysite/;
    }

    location / {
	   proxy_pass http://127.0.0.1:8000;
    }
}