Skip to content

Instantly share code, notes, and snippets.

@kuccello
Created December 11, 2009 17:02
Show Gist options
  • Save kuccello/254347 to your computer and use it in GitHub Desktop.
Save kuccello/254347 to your computer and use it in GitHub Desktop.
server {
listen 80 default;
server_name _;
access_log /var/log/nginx/engine.log;
server_name_in_redirect off;
location / {
proxy_pass http://127.0.0.1:8080/;
include /etc/nginx/proxy.conf;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment