Skip to content

Instantly share code, notes, and snippets.

@SOLUNTECH
Last active August 29, 2015 14:08
Show Gist options
  • Save SOLUNTECH/1a4cf07a6027d1c991c2 to your computer and use it in GitHub Desktop.
Save SOLUNTECH/1a4cf07a6027d1c991c2 to your computer and use it in GitHub Desktop.
Proxy reverse
<VirtualHost 109.74.199.47:80>
ServerAdmin davy.brion@thatextramile.be
ServerName thatextramile.be
ServerAlias www.thatextramile.be
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://localhost:3000/
ProxyPassReverse http://localhost:3000/
</Location>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment