Forked from huntwelch/gist:769731c9afabbb514f39b0fbca2109b1
Created
June 15, 2016 03:00
-
-
Save esteigler/c7672275e029cf797f6718b4335ea4dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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