From: erickson Date: Thu, 18 Nov 2010 14:31:33 +0000 (+0000) Subject: Apparently, IE versions 6+ can handle ssl+keepalive. this apache change should help... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a76b63d1aaa892e3e1477bfe6f37371dcc506597;p=evergreen%2Fpines.git Apparently, IE versions 6+ can handle ssl+keepalive. this apache change should help speed up IE w/ ssl and reduce server back-and-forth git-svn-id: svn://svn.open-ils.org/ILS/trunk@18775 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/examples/apache/eg.conf b/Open-ILS/examples/apache/eg.conf index f44ae921a2..537baa4568 100644 --- a/Open-ILS/examples/apache/eg.conf +++ b/Open-ILS/examples/apache/eg.conf @@ -121,10 +121,13 @@ NameVirtualHost *:443 Include eg_vhost.conf # help IE along with SSL pages - BrowserMatch ".*MSIE.*" \ + SetEnvIf User-Agent ".*MSIE [1-5].*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 + SetEnvIf User-Agent ".*MSIE [6-9].*" \ + ssl-unclean-shutdown + # ----------------------------------------------------------------------------------