Skip to content

Instantly share code, notes, and snippets.

@shawjia
Created November 15, 2012 07:50
Show Gist options
  • Select an option

  • Save shawjia/4077274 to your computer and use it in GitHub Desktop.

Select an option

Save shawjia/4077274 to your computer and use it in GitHub Desktop.
Apache 转发请求
# 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