Sunday, 18 October 2009

YSlow

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.

No comments:

Post a Comment