Created
October 10, 2012 22:54
-
-
Save jcode/3869055 to your computer and use it in GitHub Desktop.
Apache2 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
a2enmod proxy | |
a2enmod proxy_http | |
...in the virtualhost add this lines... | |
ProxyPreserveHost On | |
ProxyRequests off | |
ProxyPass / http://192.168.1.193/ | |
ProxyPassReverse / http://192.168.1.193/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment