diff options
author | Greg Stein <gstein@apache.org> | 2010-07-21 01:33:18 +0200 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2010-07-21 01:33:18 +0200 |
commit | 9b90637efc6d5bde17fa99a78535b6b73a8bcf74 (patch) | |
tree | 040159ccaab586e28830a7f3e6317338f8f37583 /docs/conf/extra/httpd-ssl.conf.in | |
parent | Fix processing of long chunk extensions (diff) | |
download | apache2-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.in | 2 |
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 |