Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache 2.4 Forward Proxy Issue

Status
Not open for further replies.

balaji484

Programmer
Jan 22, 2014
1
0
0
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top