Skip to content

Instantly share code, notes, and snippets.

@jdutton
Created January 11, 2013 21:34
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 jdutton/4514130 to your computer and use it in GitHub Desktop.
Save jdutton/4514130 to your computer and use it in GitHub Desktop.
nginx conf to host jenkins on port 80
upstream jenkins {
server 127.0.0.1:8080;
}
server {
listen 80;
server_name jenkins.sn.stratus.com;
location / {
proxy_pass http://jenkins;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment