appengine static file handling

[edit|delete]

On app engine I add this to app.yaml, so static requests do not touch the app server:

- url: /([^/]+)/static/([^/]+)
  static_dir: applications/\1/static/\2


Post a comment