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

Ajax

开发平台:

Others

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