Browser cache compression + Nginx = bug
-
Hi there,
When you enable the general Browser cache compression (option ID:
browsercache_compression
) on an Nginx web server, here is what you’ve got as a configuration in thenginx.conf
custom file:location ~ /wp-contents/cache/page_enhanced.*gzip$ { gzip off; types { text/xml xml_gzip } default_type text/html; expires modified 3600s; add_header X-Powered-By "W3 Total Cache/0.9.6"; add_header Vary "Accept-Encoding, Cookie"; add_header Pragma "public"; add_header Cache-Control "max-age=3600, public"; add_header Content-Encoding gzip; }
As you can see, a semicolon is missing in the instruction
text/xml xml_gzip
This bug prevents the server from restarting.Could you please check this and fix it?
Best regards,
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Browser cache compression + Nginx = bug’ is closed to new replies.