Created
September 21, 2013 22:22
-
-
Save qpfiffer/6654772 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 { | |
| error_log /var/log/nginx/shithouse_error.log; | |
| access_log /var/log/nginx/shithouse_access.log; | |
| listen 80; | |
| server_name 3am.shithouse.tv; | |
| location / { try_files $uri @3am; } | |
| location @3am { | |
| include uwsgi_params; | |
| uwsgi_pass unix:/run/uwsgi/app/3am/socket; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment