Created
November 19, 2013 09:27
-
-
Save jimjam88/7542659 to your computer and use it in GitHub Desktop.
Apache virtual host for Jenkins
This file contains hidden or 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
| <VirtualHost *:80> | |
| ServerAdmin [email protected] | |
| ServerName jenkins.localhost | |
| ProxyRequests Off | |
| <Proxy *> | |
| Order deny,allow | |
| Allow from all | |
| </Proxy> | |
| ProxyPreserveHost on | |
| ProxyPass / http://localhost:8080/ | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment