|
@@ -5,8 +5,17 @@ server {
|
|
|
|
|
|
access_log /var/log/nginx/host.access.log main;
|
|
|
|
|
|
+ gzip on;
|
|
|
+ gzip_disable "msie6";
|
|
|
+ gzip_vary on;
|
|
|
+ gzip_proxied any;
|
|
|
+ gzip_comp_level 6;
|
|
|
+ gzip_buffers 16 8k;
|
|
|
+ gzip_http_version 1.1;
|
|
|
+ gzip_types text/plain application/css text/css application/xml text/javascript application/javascript application/x-javascript;
|
|
|
+
|
|
|
+
|
|
|
location / {
|
|
|
- gzip_static on;
|
|
|
root /usr/share/nginx/html;
|
|
|
#index index.html;
|
|
|
try_files $uri $uri/ /index.html;
|