diff --git a/nginx.conf b/nginx.conf index 216a1e2..95c9c82 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,17 +3,12 @@ events {} http { server { listen 80 default_server; - server_name _; - - location / { - root /usr/share/nginx/html; - index index.html; - } - - location /img { - include /etc/nginx/mime.types; - alias /usr/share/nginx/html/img; - } + server_name _; + root /usr/share/nginx/html; + include /etc/nginx/mime.types; + index index.html; + gzip on; + gzip_disable "msie6"; location = /favicon.ico { access_log off; log_not_found off; } }