Skip to content

Instantly share code, notes, and snippets.

@ricdex
Created September 11, 2013 16:09
Show Gist options
  • Save ricdex/6525851 to your computer and use it in GitHub Desktop.
Save ricdex/6525851 to your computer and use it in GitHub Desktop.
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