How to enable Gzip compression on Plesk – Nginx
If you are using Nginx web server on your Plesk server, you can enable Gzip compression on Plesk by using the following method. Please click here to know how to enable Gzip compression on Plesk with Apache web server.
First, you need to create the file /etc/nginx/conf.d/gzip.conf
vim /etc/nginx/conf.d/gzip.conf
and add the following into it.
gzip on; gzip_disable "MSIE [1-6]\.(?!.*SV1)"; gzip_proxied any; gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon image/bmp image/svg+xml; gzip_vary on;
Test the configuration using the following command.
nginx -t
Restart Nginx
/etc/init.d/nginx restart
Once it is done, you can verify the Gzip is enabled on your website by clicking Here
If you like this post and wish to receive more articles from us, please like our FB page: Grepitout
Your suggestions and feedbacks will encourage us and help to improve further, please feel free to write your comments.
For more details on our services, please drop us an E-mail at info@grepitout.com
[…] click here to know how to enable Gzip compression on Plesk using Nginx web […]
Thanks for the super manuel
Thank you very much. That is exactly what I have been looking for.