diff options
Diffstat (limited to 'apache2/conf.d/local-ssl.conf')
-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" |