How to host static HTML files on Google App Engine?

Viewed 22256

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

7 Answers

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.

Related