Using Google App Engine for static files

google-app-enginegoogle-cloud-platform

I want to serve the static data for my website from Google App Engine.

How do I configure GAE to serve static content?

Best Answer

The documentation on how to get GAE to serve static content is here: Using Static Files.

It's rather simple, you just define a static directory in your app.yaml file.

handlers:
- url: /stylesheets
  static_dir: stylesheets
Related Topic