I'm running Google Page Speed on my website which is in Python/Bottle on Google App Engine.
It's saying: 'The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:'
and then goes on to list most of my static files (images, css, js), and says to specify a cache for more than a week.
In my app.yaml file, I have this: default_expiration: "21d 1h" which doesn't seem to be doing anything.
Does anyone have any ideas on how I can cache the files it's talking about, or is this an issue with using Bottle on AppEngine?
Thanks.