Skip to content

Instantly share code, notes, and snippets.

@tim-peterson
Created September 13, 2012 03:26
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 tim-peterson/3711660 to your computer and use it in GitHub Desktop.
Save tim-peterson/3711660 to your computer and use it in GitHub Desktop.
MNPP /Applications/MNPP/conf/nginx/nginx.conf
user www;
worker_processes 5;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream uwsgiapps {
server unix:/Applications/MNPP/tmp/uwsgi.sock;
server 127.0.0.1:9001;
}
#include /Applications/MNPP/conf/nginx/sites-enabled/*;
include /Applications/MNPP/conf/nginx/sites-enabled/default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment