Created
November 15, 2012 07:50
-
-
Save shawjia/4077274 to your computer and use it in GitHub Desktop.
Apache 转发请求
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
| # http://httpd.apache.org/docs/2.4/mod/mod_proxy.html | |
| <VirtualHost *:80> | |
| ServerName www.test.com | |
| ServerName test.com | |
| ProxyPass / http://127.0.0.1:3000/ | |
| ProxyPassReverse / http://127.0.0.1:3000/ | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment