summaryrefslogtreecommitdiff
path: root/apache2/conf.d
diff options
context:
space:
mode:
authorJonas <dr@jones.dk>2011-01-13 20:21:41 +0100
committerJonas <dr@jones.dk>2011-01-13 20:21:41 +0100
commit425be1afea28fec7f90324f6c3ed92ecd1001d39 (patch)
treece47e85abd0c99a977091d0c55ec5e70e3b88191 /apache2/conf.d
parente012fafbde650092db8475b1997cc95e11ba5437 (diff)
Relax quirks for newer MSIE.
Diffstat (limited to 'apache2/conf.d')
-rw-r--r--apache2/conf.d/local-ssl.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/apache2/conf.d/local-ssl.conf b/apache2/conf.d/local-ssl.conf
index 4e1de50..3626e25 100644
--- a/apache2/conf.d/local-ssl.conf
+++ b/apache2/conf.d/local-ssl.conf
@@ -16,8 +16,10 @@ SSLCACertificatePath /etc/ssl/certs/
SSLOptions +StdEnvVars
</Directory>
-BrowserMatch ".*MSIE.*" \
+BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
+# MSIE 7 and newer should be able to use keepalive
+BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
#CustomLog /var/log/apache2/ssl_request_log "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"