I have figured it out!
First off: it is impossible to link something like mydomain.com
with your appspot app. This is considered a naked domain, which is not supported by Google App Engine (anymore). Strictly speaking, the answer to my question has to be "impossible". Read on...
All you can do is add subdomains pointing to your app, e.g myappid.mydomain.com
. The key to get your top level domain linked to your app is to realize that www
is a subdomain like any other!
myappid.mydomain.com
is treated exactly the same as www.mydomain.com
!
Here are the steps:
- Go to appengine.google.com, open your app
- Administration > Versions > Add Domain... (your domain has to be linked to your Google Apps account, follow the steps to do that including the domain verification.)
- Go to www.google.com/a/yourdomain.com
- Dashboard > your app should be listed here. Click on it.
- myappid settings page > Web address > Add new URL
- Simply enter
www
and click Add
- Using your domain hosting provider's web interface, add a CNAME for
www
for your domain and point to ghs.google.com
Now you have www.mydomain.com
linked to your app.
I wished this would have been more obvious in the documentation...Good luck!