BUG on W3TC nginx config
-
Bug on nginx config from W3TC
location ~ /wp-content/cache/page_enhanced.*gzip$ { gzip off; types { text/xml xml_gzip } default_type text/html; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; add_header X-XSS-Protection "1; mode=block"; add_header Strict-Transport-Security "max-age=604800; includeSubdomains" always; expires modified 604800s; 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 "public"; add_header Content-Encoding gzip; }
specifically on this section
types { text/xml xml_gzip }
dont have ending ; that causing error. I have to manually edit it or edit the W3TC file.
it should be
types { text/xml xml_gzip; }
Anyone else that also experience this?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘BUG on W3TC nginx config’ is closed to new replies.