487fbcf8ea
- support for basic Nginx config under Centos and Debian - improve security feature under Nginx - support for Let's Encrypt - support for SSL
12 lines
351 B
Text
12 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;
|