Skip to main content

Apache 2.o.x and ProxyTimeout

Apache documentation says that mod_proxy supports ProxyTimeout directive in Apache 2.0.x, however it doesn’t.


Apache 2.0.x completely IGNORES ProxyTimeout directive. Click this to know more. Their release notes says that they tried to fix this bug in 2.0.61 version but that fix doesn’t work even.


You would find correct implementation of this directive in Apache 2.2.X. No OTHER WAY.


I tried following patches but they doesn’t work.

http://marc.info/?l=apache-httpd-dev&m=120362209316755&w=2

http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/modules/proxy/mod_proxy.c?r1=421178&r2=535853&pathrev=550514&diff_format=h

http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/proxy/proxy_util.c?r1=536291&r2=556972&pathrev=556972&diff_format=l


So finally we used our RAMBAND and increased overall timeout of the Apache 2.0.53 server using Timeout directive

Comments

Popular posts from this blog

Java and “\u” ( blackslash u )

This article is related to escaping of “\u” backslash u [Unicode character] in Java Problem Statement: I have a string which consists of a DOS path something like "\sample\user_data\example".The “\u” (backslash u) in “\user_data” above gives “an invalid Unicode” JavaScript error in IE and hence my page isn’t displayed. I tried to replace “\u” (backslash u) in the string with something like "\ u"(backslash u) as I was not able to escape it. This also does not work . Java complier does not allow “\u” (backslash u) character and gives "Invalid unicode character sequence" error when I use it with replaceAll. Que 1: Can I escape the \u character some how in Java or JavaScript? Que 2: How can I replace all "\u" character in a string with something else like "\ u"? I have posted this query to some of the Java and JavaScript related groups. Here are the solutions I found Before going into the details about solution let us...

Every thing about ConcurrentHashMap

Why ConcurrentHashMap is better than Hashtable and just as good as a HashMap http://www.codercorp.com/blog/java/why-concurrenthashmap-is-better-than-hashtable-and-just-as-good-hashmap.html Why ConcurrentHashMap does not support null values http://anshuiitk.blogspot.com/2010/12/why-concurrenthashmap-does-not-support.html