Created
January 11, 2013 21:34
-
-
Save jdutton/4514130 to your computer and use it in GitHub Desktop.
nginx conf to host jenkins on port 80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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