dns - How to use Google app engine with my own naked domain (not subdomain)? -


After a few hours of reading and using the DNS record, I use these URLs from my Google App Engine app Myappid.appspot.com

  • www.myappid.myowndomain.com
  • What does not work:

  • Myowndomain.com
  • www.myowndomain.com
  • I could be able to serve your app directly from my domain Wish and not subdomain. I have seen apps that do this, is there a way to do this without redirecting a URL?

    [update April 2016] This reply is now outdated, Custom nude domain mapping is supported, see.

    I have settled it! First of all: It is impossible to link something like mydomain.com with your codepot app, it is considered a naked domain, which is not supported by Google App Engine (now) . Speaking strictly, my question should be "impossible". Read on ...

    Anything you can do is point to your app like myappid.mydomain.com . The key to getting your top level domain associated with your app is to know that www is a subdomain like any other!

    myappid.mydomain.com www.mydomain.com is treated the same way!

    Here are the steps:

    1. Go to the Appignain, open
    2. Add Administration> Version> Domains ... Google Apps account must be linked, follow the steps to do this, including domain verification.)
    3. Go to www..google.com/a/yourdomain.com
    4. Dashboard > Your app should be listed here Click on it.
    5. enter myappid settings page> web address> add new url
    6. just enter www and click Add
    7. Hosting your domain Add a CNAME for the provider's web interface, www for your domain, and point to ghs.googlehosted.com

    now You have www.mydomain.com associated with your app.

    I thought it would have been more clear in the document ... Good luck!


    Comments

    Popular posts from this blog

    python - Overriding the save method in Django ModelForm -

    html - CSS autoheight, but fit content to height of div -

    qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -