An app of mine has nginx as a webserver, and I'm using gzip
compression. I've checked gzip integrity via https://checkgzipcompression.com/ - it seems to be working A OK.
However, a lot of my users are accessing my website via a forward proxy. How can I test whether gzip is working correctly for those users as well? Please ask for more information as required.
In nginx.conf
, some relevant lines are:
gzip on;
gzip_disable "msie6";
gzip_proxied expired no-cache no-store private auth;
gzip_comp_level 2;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;