Question
GZip not compressing everything
Hey,
One of our client sites motionarray.com is reporting that 3 files aren’t being compressed.
https://motionarray.com/assets/site/js/dist/head.js
https://motionarray.com/assets/site/css/dist/all.css
https://motionarray.com/assets/site/js/dist/all.js
GZip is enabled on our server and we get a grade D for compression through YSlow so clearly some things are being compressed. I’m just stumped as to why these 3 files specifically aren’t being.
Our nginx.conf contains this:
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
gzip_types text/plain application/javascript application/x-javascript text/javascript text/xml text/css;
Has anyone else experienced this?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×