Hi, I have Configured Apache2.4.4 for forward Proxy and tested from my browser the response is very slow and even not coming complete Response for some requests.
I also Tested the same for Apache2.2 Forward Proxy it is very fast and good. May I know what is the Problem in Apache 2.4 Is there any Issues in proxy modules (mod_proxy,mod_proxy_connect.so,mod_proxy_http.so) in Apache2.4 Please give me the solution. This is the same configuration i used for Apache2.2 and Apache2.4 ########################################################################## ## Apache Forward proxy ########################################################################## <IfModule !proxy_module> LoadModule proxy_module modules/mod_proxy.so </IfModule> <IfModule !proxy_connect_module> LoadModule proxy_connect_module modules/mod_proxy_connect.so </IfModule> <IfModule !proxy_http_module> LoadModule proxy_http_module modules/mod_proxy_http.so </IfModule> Listen *:8080 <VirtualHost *:8080> ProxyRequests On <Location /> Order Deny,Allow Deny from all Allow from all </Location> </VirtualHost> Thanks & Regards, sekhar.