GNOME Bugzilla – Bug 665575
add caching for static data
Last modified: 2011-12-05 09:41:48 UTC
add expires header configuration for at leat the css and js and maybe everything under /static to avoid querying the server again and again looking at the hits, seems clients often retrieve the same file each time btw: it is very popular :) 12K hits in 20min.
added the following: <Location /static/> ExpiresActive On ExpiresByType image/png "access plus 1 week" ExpiresByType application/javascript "access plus 1 week" ExpiresByType text/javascript "access plus 1 week" ExpiresByType text/css "access plus 1 day" Header set Cache-Control "public" </Location>