]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_setenvif.conf
rel 15; builds
[packages/apache1.git] / apache1-mod_setenvif.conf
1 # $Id$
2 LoadModule setenvif_module      modules/mod_setenvif.so
3
4 <IfModule mod_setenvif.c>
5 # The following directives modify normal HTTP response behavior.
6 # The first directive disables keepalive for Netscape 2.x and browsers that
7 # spoof it. There are known problems with these browser implementations.
8 # The second directive is for Microsoft Internet Explorer 4.0b2
9 # which has a broken HTTP/1.1 implementation and does not properly
10 # support keepalive when it is used on 301 or 302 (redirect) responses.
11 #
12 BrowserMatch "Mozilla/2" nokeepalive
13 BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
14
15 #
16 # The following directive disables HTTP/1.1 responses to browsers which
17 # are in violation of the HTTP/1.0 spec by not being able to grok a
18 # basic 1.1 response.
19 #
20 BrowserMatch "RealPlayer 4\.0" force-response-1.0
21 BrowserMatch "Java/1\.0" force-response-1.0
22 BrowserMatch "JDK/1\.0" force-response-1.0
23 </IfModule>
This page took 0.082275 seconds and 3 git commands to generate.