• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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