diff options
author | Jonas <dr@jones.dk> | 2011-01-13 20:21:41 +0100 |
---|---|---|
committer | Jonas <dr@jones.dk> | 2011-01-13 20:21:41 +0100 |
commit | 425be1afea28fec7f90324f6c3ed92ecd1001d39 (patch) | |
tree | ce47e85abd0c99a977091d0c55ec5e70e3b88191 | |
parent | e012fafbde650092db8475b1997cc95e11ba5437 (diff) |
Relax quirks for newer MSIE.
-rw-r--r-- | apache2/conf.d/local-ssl.conf | 4 |
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" |