码迷,mamicode.com
首页 > 其他好文 > 详细

Apache正向代理与反向代理配置

时间:2014-09-04 01:31:17      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:http   os   ar   for   div   sp   on   c   line   

Apache正向代理与反向代理配置

 
 

正向代理示例配置:

  1. ProxyRequests On
  2. ProxyVia On
  3.  
  4. <Proxy *>
  5. Order deny,allow
  6. Deny from all
  7. Allow from 192.168.0
  8. </Proxy>
  9. CacheEnable disk /
  10. CacheRoot "/var/cache/mod_proxy"

反向代理示例配置:

  1. ProxyRequests Off
  2. <Proxy *>
  3. Order deny,allow
  4. Allow from all
  5. </Proxy>
  6. ProxyPass /centos http://www.centos.bz
  7. ProxyPassReverse /centos http://www.centos.bz
 

转载请标明文章来源:《https://www.centos.bz/2012/08/apache-forward-reverse-proxy/

Apache正向代理与反向代理配置

标签:http   os   ar   for   div   sp   on   c   line   

原文地址:http://www.cnblogs.com/L-H-R-X-hehe/p/3955077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!