Skip to content

Instantly share code, notes, and snippets.

@qpfiffer
Created September 21, 2013 22:22
Show Gist options
  • Select an option

  • Save qpfiffer/6654772 to your computer and use it in GitHub Desktop.

Select an option

Save qpfiffer/6654772 to your computer and use it in GitHub Desktop.
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