Posted by chadcrew on April 4, 2012 at 1:40pm
Hi,
Using perusio's config on a Drupal 6 (pressflow 6) site with Boost and nginx, it looks like the boost cached pages don't have a charset specified. Google's pagespeed extension reports:
"The following resources have no character set specified in their HTTP headers. Specifying a character set in HTTP headers can speed up browser rendering."
Should this be added to the nginx config somewhere?
Thanks,
Chad
Comments
Yes
There should be a line added in the Boost cache location, like in this example: https://github.com/omega8cc/nginx-for-drupal/blob/master/aegir/conf/ngin...
charset utf-8;It's fixed now
not sure if it isn't Boost fault.
Here and here.
Thanks
Boost sets this in its .htaccess file
So it must be done also on the Nginx config level.
That "charset utf-8;"
That "charset utf-8;" addition fixed it for me. Thanks!