summaryrefslogtreecommitdiffstats
path: root/docs/conf/extra/httpd-ssl.conf.in
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2010-07-21 01:33:18 +0200
committerGreg Stein <gstein@apache.org>2010-07-21 01:33:18 +0200
commit9b90637efc6d5bde17fa99a78535b6b73a8bcf74 (patch)
tree040159ccaab586e28830a7f3e6317338f8f37583 /docs/conf/extra/httpd-ssl.conf.in
parentFix processing of long chunk extensions (diff)
downloadapache2-9b90637efc6d5bde17fa99a78535b6b73a8bcf74.tar.xz
apache2-9b90637efc6d5bde17fa99a78535b6b73a8bcf74.zip
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
Diffstat (limited to '')
-rw-r--r--docs/conf/extra/httpd-ssl.conf.in2
1 files changed, 1 insertions, 1 deletions
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