I just did a simple test with YSlow on the predict.ly holding page.
It highlighted that nginx is not sending expires headers on images. Found the following to fix:
# serve static files directly
location ~* ^.+.(jpgjpeggifcsspngjsicohtml)$
{
access_log off;
expires 30d;
}
It also highlighted I don't have a favicon.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment