Created
September 11, 2013 16:09
-
-
Save ricdex/6525851 to your computer and use it in GitHub Desktop.
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
LoadModule proxy_http_module modules/mod_proxy_http.so | |
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so | |
LoadModule proxy_connect_module modules/mod_proxy_connect.so | |
LoadModule proxy_module modules/mod_proxy.so | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> | |
<Location /> | |
Order allow,deny | |
Allow from all | |
</Location> | |
ProxyPass / http://localhost:8080/ | |
ProxyPassReverse / http://localhost:8080/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment