Chinaunix首页 | 论坛 | 博客
  • 博客访问: 808728
  • 博文数量: 94
  • 博客积分: 1767
  • 博客等级: 上尉
  • 技术积分: 1168
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-13 23:16
个人简介

ha

文章分类

全部博文(94)

文章存档

2014年(2)

2013年(17)

2012年(6)

2011年(15)

2010年(23)

2009年(23)

2008年(8)

我的朋友

分类: 系统运维

2010-11-03 19:17:57

1.SetEnv force-proxy-request-1.0 1
2.SetEnv proxy-nokeepalive 1
 
不加这两个选项,可能会导致ie5.5等浏览器访问异常,时好时坏。出现以下提示:
 
Http 502 Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /.
Reason: Error reading from remote server
 
引用
For circumstances where mod_proxy is sending requests to an origin server that
 doesn't properly implement keepalives or HTTP/1.1, there are two environment
variables that can force the request to use HTTP/1.0 with no keepalive. These are set via the SetEnv directive.
These are the force-proxy -request-1.0 and proxy -nokeepalive notes.
大概是这意思(不是我译的):
当mod_proxy向一个没有正确实现持久连接(KeepAlive)或HTTP/1.1的原始服务器发送请求的时候,可以通
过设置两个环境变量来发送不带持久连接(KeepAlive)的HTTP/1.0请求。这两个变量是通过SetEnv指令设
置的。
以下是force-proxy-request-1.0和proxy -nokeepalive的例子:
   
   JkMount /hr/servlet/* worker1   
   JkMount /hr/*.jsp worker1   
   JkMount /hr/*. do  worker1   
   ServerAdmin njgnini @163 .com   
   ServerName
   ServerAlias   
   RewriteEngine On   
   RewriteRule ^/$ /hr/ [R,P]         
     
   SetEnv force-proxy-request-1.0 . 1    
   SetEnv proxy-nokeepalive  1    
  
配置好以后需要重启apache生效
 
参考:
 
=============================================================

ProxyPass、 ProxyPassReverse

    这两个配置时,如果不加ProxyPassReverse 这行,则IE地址栏里面显示就是Apache代理后端应

服务器(比如tomcat)所对就的地址,反之,加上ProxyPassReverse这行,则显示的就是

Apache的地址,把原tomcat给隐藏了

====================================================
阅读(5296) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~