Created
October 29, 2013 05:16
-
-
Save sugeng/7209464 to your computer and use it in GitHub Desktop.
Reverse Proxy Configuratin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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