From 9b90637efc6d5bde17fa99a78535b6b73a8bcf74 Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Tue, 20 Jul 2010 23:33:18 +0000 Subject: [PATCH] Fix up some SSL configuration, per issue #49484. IE6 had a hotfix released for this problem quite a while back (see kb 921090), so restrict the modified behavior to the old/unsupported browsers. * docs/conf/extra/http-ssl.conf.in: (): tighten up the regex to only select old MSIE browsers for the downgrade in http behavior. this allows IE6 to run much faster. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@966055 13f79535-47bb-0310-9956-ffa450edef68 --- docs/conf/extra/httpd-ssl.conf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf/extra/httpd-ssl.conf.in b/docs/conf/extra/httpd-ssl.conf.in index 1ab02bcb8e..59781b9c11 100644 --- a/docs/conf/extra/httpd-ssl.conf.in +++ b/docs/conf/extra/httpd-ssl.conf.in @@ -218,7 +218,7 @@ SSLCertificateKeyFile "@exp_sysconfdir@/server.key" # Similarly, one has to force some clients to use HTTP/1.0 to workaround # their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and # "force-response-1.0" for this. -BrowserMatch ".*MSIE.*" \ +BrowserMatch ".*MSIE [1-5].*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 -- 2.40.0