Skip to content

Instantly share code, notes, and snippets.

@sugeng
Created October 29, 2013 05:16
Show Gist options
  • Save sugeng/7209464 to your computer and use it in GitHub Desktop.
Save sugeng/7209464 to your computer and use it in GitHub Desktop.
Reverse Proxy Configuratin
<VirtualHost *:80>
ServerAdmin me@sugeng.me
ServerName sugeng.me
ServerAlias www.sugeng.me
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://127.0.0.1:3000/
ProxyPassReverse http://127.0.0.1:3000/
</Location>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment