Created
June 2, 2016 17:21
-
-
Save roneigebert/4d8f68f9a91d8592645886c3e4a2cd83 to your computer and use it in GitHub Desktop.
Apache proxy
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> | |
ProxyPreserveHost On | |
ProxyRequests Off | |
ServerName host-origem-na-porta-80.com.br | |
ProxyPass / http://host-de-destino:8080/ | |
ProxyPassReverse / http://host-de-destino:8080/ | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment