apache20.conf.example.template
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. # Apache 2.0/2.2 HTTP proxy example for Typo with Mongrel
  2. #
  3. # Before any of this will work, you need to make sure that the mod_proxy and 
  4. # mod_proxy_http modules are loaded.  For shared hosting, your provider will 
  5. # have do this globally.  The two lines required look like this, although the 
  6. # exact path may vary:
  7. #
  8. #   LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so                   
  9. #   LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so 
  10. #
  11. # Then you'll want a VirtualHost section that looks about like this:
  12. <VirtualHost blog.example.com>
  13.   ServerName blog.example.com
  14.   ServerAlias www.blog.example.com
  15.   # Change this to your email address
  16.   ServerAdmin webmaster@localhost
  17.   # Change these to be valid paths for your host.  The DocumentRoot path
  18.   # isn't very important because we don't actually use it for anything.
  19.   # For security's sake, it's best that it points to an empty directory,
  20.   # but that's not critical.
  21.   DocumentRoot /var/www/blog
  22.   ErrorLog /var/log/apache2/blog_error.log
  23.   CustomLog /var/log/apache2/blog_access.log combined
  24.   ServerSignature On
  25.   # This is the important part--it sets up proxying.
  26.   ProxyRequests Off
  27.   <Proxy *>
  28.     Order deny,allow
  29.     Allow from all
  30.   </Proxy>
  31.   ProxyPass / $RAILS_URL
  32.   ProxyPassReverse / $RAILS_URL
  33.   ProxyPreserveHost On
  34. </VirtualHost>