Mine
public text v1 · immutable#
# 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;
}
}