Skip to content

Instantly share code, notes, and snippets.

@fsvehla
Created September 13, 2012 14:25
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 fsvehla/3714641 to your computer and use it in GitHub Desktop.
Save fsvehla/3714641 to your computer and use it in GitHub Desktop.
daemon off;
pid /tmp/nginx-80-to-8888.pid;
events {
worker_connections 102480;
multi_accept on;
}
http {
server {
server_name _;
location / {
proxy_pass http://127.0.0.1:8888;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment