]> git.pld-linux.org Git - packages/apache.git/blob - apache-mod_deflate.conf
- unify
[packages/apache.git] / apache-mod_deflate.conf
1 # $Id$
2 LoadModule deflate_module               modules/mod_deflate.so
3
4 SetOutputFilter DEFLATE
5
6 <IfModule mod_setenvif.c>
7         # Netscape 4.x has some problems...
8         BrowserMatch ^Mozilla/4 gzip-only-text/html
9
10         # Netscape 4.06-4.08 have some more problems
11         BrowserMatch ^Mozilla/4\.0[678] no-gzip
12
13         # MSIE masquerades as Netscape, but it is fine
14         BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
15
16         SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
17         SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
18         SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar|iso)$ no-gzip dont-vary
19 </IfModule>
20
21 <IfModule mod_headers.c>
22         # Make sure proxies don't deliver the wrong content
23         Header append Vary User-Agent env=!dont-vary
24 </IfModule>
This page took 0.023409 seconds and 3 git commands to generate.