Skip to content

Instantly share code, notes, and snippets.

@Navds
Created February 1, 2019 08:33
Show Gist options
  • Save Navds/13e6c4ebaf9fd0c8d85c5403ee97f59a to your computer and use it in GitHub Desktop.
Save Navds/13e6c4ebaf9fd0c8d85c5403ee97f59a to your computer and use it in GitHub Desktop.
Apache as a Jenkins reverse proxy
<VirtualHost *:80>
ServerName jenkins.navds.intra
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyRequests Off
AllowEncodedSlashes NoDecode
<Proxy http://localhost:8080*>
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment