Skip to content

Instantly share code, notes, and snippets.

@jimjam88
Created November 19, 2013 09:27
Show Gist options
  • Select an option

  • Save jimjam88/7542659 to your computer and use it in GitHub Desktop.

Select an option

Save jimjam88/7542659 to your computer and use it in GitHub Desktop.
Apache virtual host for Jenkins
<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