Skip to content

Instantly share code, notes, and snippets.

@5a494d
Forked from davybrion/s1.xml
Created October 9, 2015 22:57
Show Gist options
  • Save 5a494d/4dadd6a8c318366faafd to your computer and use it in GitHub Desktop.
Save 5a494d/4dadd6a8c318366faafd to your computer and use it in GitHub Desktop.
code snippet for "Hosting a Node.js site through Apache" post
<VirtualHost 109.74.199.47:80>
ServerAdmin [email protected]
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