Skip to content

Instantly share code, notes, and snippets.

@bsergean
Created January 20, 2016 17:03
Show Gist options
  • Save bsergean/02d447f38e6d61889de2 to your computer and use it in GitHub Desktop.
Save bsergean/02d447f38e6d61889de2 to your computer and use it in GitHub Desktop.
Simple nginx.conf file
#
# Run in the foreground locally
# nginx -p . -c nginx.conf
#
worker_processes 1;
daemon off;
error_log nginx_error.log;
events {
worker_connections 1024;
}
http {
server {
listen 8008;
location / {
root /Users/bsergean/src/sandbox/json/jsoncpp;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment