views:

1441

answers:

2

Is it possible to host a static html website on AppEngine? And how to make my domain name work with it?

+13  A: 

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.

Benedikt Eger