• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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