On 24 Jan 2013, at 7:55 AM, Philip Kilner <phil.kil...@gmail.com> wrote: > > On 24/01/13 15:27, Jonathan Lundell wrote: >> Have you disabled static file mapping in app.yaml? >> > > I hadn't, no - only the app name and the Python version are changed there.
You'll see sections like this: - url: /(?P<a>.+?)/static/(?P<b>.+) static_files: applications/\1/static/\2 upload: applications/(.+?)/static/(.+) secure: optional You can add more, if you have multiple web2py apps to handle, as it sounds like you do. GAE should be serving those files itself, I assume, so web2py routing shouldn't ever see or care about static files in a GAE environment (or for that matter in an Apache environment, if you have Apache configured similarly; ditto other servers). --