Created
February 1, 2019 08:33
-
-
Save Navds/13e6c4ebaf9fd0c8d85c5403ee97f59a to your computer and use it in GitHub Desktop.
Apache as a Jenkins reverse proxy
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> | |
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