]> granicus.if.org Git - apache/commitdiff
Fix up some SSL configuration, per issue #49484. IE6 had a hotfix released
authorGreg Stein <gstein@apache.org>
Tue, 20 Jul 2010 23:33:18 +0000 (23:33 +0000)
committerGreg Stein <gstein@apache.org>
Tue, 20 Jul 2010 23:33:18 +0000 (23:33 +0000)
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

index 1ab02bcb8ef57d16e0b6e999de2c25d197b6dc81..59781b9c119426b060e09c1097df5da3205295d3 100644 (file)
@@ -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