13 lines
351 B
Text
13 lines
351 B
Text
|
# Compress everything [tm]
|
||
|
gzip on;
|
||
|
gzip_static on;
|
||
|
gzip_proxied any;
|
||
|
|
||
|
# Not for silly ie
|
||
|
gzip_disable "MSIE [1-6]\.";
|
||
|
gzip_http_version 1.0;
|
||
|
gzip_types text/plain text/xml text/css
|
||
|
text/comma-separated-values
|
||
|
text/javascript application/x-javascript
|
||
|
application/atom+xml;
|