Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Apache 2.4.4 Forward Proxy Issue. |
|
Author |
|
sekhar484
Joined: 09 Nov 2011 Posts: 20
|
Posted: Wed 22 Jan '14 6:48 Post subject: Apache 2.4.4 Forward Proxy Issue. |
|
|
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. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Thu 30 Jan '14 22:34 Post subject: |
|
|
You might try
AcceptFilter http none
AcceptFilter https none
EnableSendfile Off
EnableMMAP off |
|
Back to top |
|
|
|
|
|
|