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
2009-05-04 09:00:12
+3
A:
To use your own domain with Google App Engine first you have to set your domain to work with Google Apps.
You then link the relevant Google App Engine application to the Google Apps Domain.
Dave Webb
2009-05-04 09:06:09