Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esteigler/c7672275e029cf797f6718b4335ea4dd to your computer and use it in GitHub Desktop.
Save esteigler/c7672275e029cf797f6718b4335ea4dd 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