vote up 13 vote down star
10

Hi all,

After hours of reading about and experimenting with DNS records I can access my Google app engine app via these URLs:

  • myappid.appspot.com
  • www.myappid.myowndomain.com

What does not work:

  • myowndomain.com
  • www.myowndomain.com

I want to be able to serve my app directly off my domain and not a subdomain. I've seen apps that do this. Is there any way to do this without a URL redirect?

Thanks, Mark

flag

7 Answers

vote up 0 vote down

How and where can one remove the default www subdomain Google sets up?

link|flag
If you have a own question you should ask it as a new question, not post it as an answer to some other question. The "Ask Question" button is in the top right. – sth Oct 23 at 2:19
vote up 0 vote down

Another solution which is given by Google is URL forwarding: http://www.google.com/support/a/bin/answer.py?hl=en-in&answer=61057

link|flag
vote up 0 vote down

Your awnser works fine, but only remember erase the default asignation of the www subdomain (google assign it by default)

link|flag
vote up 1 vote down

Google does not provide an IP for us to set A record. If it would we could use naked domains.

There is another option, by setting A record to foreign web server's IP and that server could make an http redirect from e.g domain.com to www.domain.com (check out GiDNS)

link|flag
vote up 0 vote down

What should the 'A Record' be set to on GoDaddy? This needs to point to an IP.

link|flag
vote up 14 vote down

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:

  1. Go to appengine.google.com, open your app
  2. 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.)
  3. Go to www.google.com/a/yourdomain.com
  4. Dashboard > your app should be listed here. Click on it.
  5. myappid settings page > Web address > Add new URL
  6. Simply enter www and click Add
  7. 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!

link|flag
3  
Heh, my bad -- I thought you knew www is a subdomain like any other, but should have considered spelling it out! – Alex Martelli May 4 at 0:05
Hey Mark, any reason why www.mydomain.com will be showing the google sites instead of the app engine domain? – TimLeung May 15 at 22:24
For example, my domain is wehearttoronto.com but this is directing to the google sites ? – TimLeung May 15 at 22:25
To get the naked mydomain.com to work, just redirect it to the www subdomain. – Steve Johnson Jul 18 at 14:27
vote up 3 vote down

See http://www.google.com/support/a/bin/answer.py?hl=en&answer=91077 for the details. Once you have signed up for Google Apps for Your Domain:

# Sign in to the Google App Engine admin console.
# Go to Administration > Versions
# Click the 'Add Domain...' button under Domain Setup.
# Enter your domain name in the 'Domain Name:' field
# Click 'Add Domain'. You will be directed to the Google Apps administrator console to complete the process.
# Log in to the Google Apps control panel with your administrator account.
# Accept the terms and specify the access URL you'd like to provide for your application.
# Click 'Accept

You can't use a naked domain, though, such as whatever.com (but www.whatever.com does work), because: """ Due to recent changes, Google App Engine no longer supports mapping your app to a naked domain. If your domain registrar supports URL redirects, you can redirect from http://yourdomain.com to your app, which can be served from domains like http://www.yourdomain.com or http://appid.yourdomain.com. """ as specified at http://www.google.com/support/a/bin/answer.py?answer=91080

link|flag
Thanks for the quick reply. I had done all that already, I added my domain to my Google Apps account. Now my app is listed as a service. The primary domain is set to mydomain.com and my app lists the subdomain (www.myappid.mydomain.com). I must be missing something. Adding the subdomain worked right away, so I doubt that it is some update/DNS/settings issue... When I go to www.mydomain.com I get "Server Not Found". – Mark May 3 at 20:06
I think I have the same problem... adding "www." for the google app engine Web address doesn't respond. Right now wehearttoronto.com is directing to the google sites... – TimLeung May 15 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.