Skip to content

Instantly share code, notes, and snippets.

@razbakov
Last active March 26, 2023 06:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save razbakov/5d4703531345e6817a9c to your computer and use it in GitHub Desktop.
Save razbakov/5d4703531345e6817a9c to your computer and use it in GitHub Desktop.
Jenkins Apache Virtual Host
<Virtualhost *:80>
ServerName your.url.com
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode
<Proxy http://localhost:8080/*>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPassReverse / http://your.url.com/
</Virtualhost>
@EricDuminil
Copy link

Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment