-
-
Save bspavel/da5b7566a236006b638a51fa15da0be2 to your computer and use it in GitHub Desktop.
Jenkins Apache Virtual Host
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
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment