How to Enable Gzip in Webuzo with Nginx
There is no .htaccess file in Nginx servers so WP Fastest Cache cannot set the gzip rules. Therefor, you must the gzip rules manually.
1. First of all you need to click on “Nginx” logo to open “Nginx Configuration” page
2. Now you should copy and paste the rules below
gzip on; gzip_vary on; gzip_proxied any; gzip_comp_level 6; gzip_buffers 16 8k; gzip_http_version 1.1; gzip_types image/svg+xml text/plain text/html text/xml text/css text/javascript application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript application/x-font-ttf application/vnd.ms-fontobject font/opentype font/ttf font/eot font/otf;