Re: Why does nginx always send content encoding as gzip

2016-10-05 Thread c0nw0nk
You should check your application sounds like that is compressing its pages. A simple test is this create a empty html file and serve that from a location and check the headers. location = /test.html { root "path/to/html/file"; } if the headers on that have no gzip compression as set in your ngi

Why does nginx always send content encoding as gzip

2016-10-05 Thread sobuz
I have set gzip to off user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid/var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remot