Apparently, IE versions 6+ can handle ssl+keepalive. this apache change should help...
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 18 Nov 2010 14:31:33 +0000 (14:31 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 18 Nov 2010 14:31:33 +0000 (14:31 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@18775 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/examples/apache/eg.conf

index f44ae92..537baa4 100644 (file)
@@ -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
+
 </VirtualHost>
 
 # ----------------------------------------------------------------------------------