How to host static HTML files on Google App Engine?

zotherstupidguy picture zotherstupidguy · May 4, 2009 · Viewed 22k times · Source

Is it possible to host a static HTML website on App Engine? And how to make my domain name work with it?

Answer

B.E. picture B.E. · May 4, 2009

Yes you can host your static files on AppEngine. Just configure your app.yaml-file like the following

- url: /
  static_dir: static_files

And put your files in the directory static_files. This way every request is routed to your static files.