Define following in your httpd.conf. This will change the URL to HTTPS
even if someone types in HTTP.
Listen *:80
ServerAdmin [EMAIL PROTECTED]
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [L,R,NC]
Hea
Are you using mod_proxy_ajp and load balancing between backend servers?
We used to see this error a lot but when we added timeout parameter to
BalancerMember directive if went away.
You may also want to try this or add the same parameter to ProxyPass
directive (timeout=300).
Regards,
AM
-Or
Hi - I have Apache 2.2.3 Web server that connects to two Tomcat 5.5.26
app servers via mod_proxy_ajp. Following is the configuration on Web
Server.
ProxyRequests Off
Order deny,allow
Allow from all
BalancerMember ajp://:8009 route=app1
keepalive=On timeout=30