• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Question NGINX W3 Total Cache enable Minify

Jur Dekker

New Pleskian
Hi,

I use W3 Total Cache for Minify on my wordpress website. If I have activated Minify, he does not use those files. I use a NGINX server


does anyone know how to solve? maybe add some to Additional nginx directives?

Greetings,
Jur
 
Adicione a diretiva adicional em "Diretivas nginx adicionais" do seu site:

gzip on;
gzip_vary on;
gzip_comp_level 6;
gzip_http_version 1.1;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_disable "MSIE [1-6].(?!.*SV1)";

Espero ter ajudado.
 
Back
Top