Skip to content

Instantly share code, notes, and snippets.

@huntwelch
Created June 15, 2016 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save huntwelch/769731c9afabbb514f39b0fbca2109b1 to your computer and use it in GitHub Desktop.
Save huntwelch/769731c9afabbb514f39b0fbca2109b1 to your computer and use it in GitHub Desktop.
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name pleasedontcall.us www.pleasedontcall.us;
client_max_body_size 4M;
location / { try_files $uri @server; }
location @server {
include uwsgi_params;
uwsgi_pass unix:///tmp/pleasedont.sock;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment