Skip to content

Instantly share code, notes, and snippets.

@iphoting
Forked from soupmatt/zzz_pow.conf
Created June 12, 2012 16:05
Show Gist options
  • Save iphoting/2918423 to your computer and use it in GitHub Desktop.
Save iphoting/2918423 to your computer and use it in GitHub Desktop.
Apache reverse proxy config for pow
<VirtualHost *:80>
ServerName pow
ServerAlias *.dev *.xip.io
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyRequests Off
ProxyPass / http://localhost:20559/
ProxyPassReverse / http://localhost:20559/
ProxyPreserveHost On
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment