jngo (owner)

Revisions

gist: 226991 Download_button fork
public
Public Clone URL: git://gist.github.com/226991.git
Embed All Files: show embed
Apache Gzip Configuration #
1
2
3
4
5
6
7
8
9
10
11
# Enable gzip compression.
SetOutputFilter DEFLATE
 
# Disable compression for browsers that do not support compression other than HTML.
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
 
# Disable compression for images.
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary