• When using Page Cache method Disk Enhanced there si an error in the generated NGINX config.

    
    location ~ /wp-content/cache/page_enhanced.*gzip$ {
        gzip off;
        types {
            text/xml xml_gzip
        }
        default_type text/html;
        add_header Content-Encoding gzip;
    }
    

    the types -> text/xml xml_gzip lacks the closing tag ;

    it shold be like this:

    
    location ~ /wp-content/cache/page_enhanced.*gzip$ {
        gzip off;
        types {
            text/xml xml_gzip;
        }
        default_type text/html;
        add_header Content-Encoding gzip;
    }
    
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Disk enhanced nginx BUG’ is closed to new replies.