Naked Domain no Registro.br not redirecting to www

I have an app hosted on Google Appengine and am using a domain of my own. Even after editing the DNS zone (it takes about 5 days) still the naked domain is not redirected to the www.

Here are the settings in the Registro.br.

Nome                      Tipo          Dados
example.com.br               A      216.239.32.21
example.com.br               A      216.239.34.21
example.com.br               A      216.239.36.21
example.com.br               A      216.239.38.21
www.example.com.br       CNAME      ghs.googlehosted.com

Here are the settings in Google Apps:

Primary Domain
Redirect the naked domain http://example.com.br to http://www.example.com.br
Author: Allan Veloso, 2014-03-25

4 answers

I added the following IPv6 values and now naked domain redirect works:

Nome                 Tipo     Dados
example.com.br       AAAA     2001:4860:4802:32:0:0:0:15
example.com.br       AAAA     2001:4860:4802:34:0:0:0:15
example.com.br       AAAA     2001:4860:4802:36:0:0:0:15
example.com.br       AAAA     2001:4860:4802:38:0:0:0:15

I don't know if it's because the BR record takes a long time to update the DNS values or if the IPv6 values were really needed.

IPv6 values were found in this Google Apps Support Article .

 1
Author: Allan Veloso, 2014-03-26 02:26:01

Try using @ (or leave blank) The Name field setting (where you are using example.com.br) for all 4 records A pointing to Google ips . Also, if you haven't already, enable the Naked Domain setting in the Google Apps Admin Panel (Learn more in English).

At least that's what I did to enable the feature using my GoDaddy domain.

 0
Author: Anthony Accioly, 2014-03-25 23:59:32

The @ that appears in DNS settings is automatically added by the DNS editor of the Registro.br, then just leave blank that entry refers to Naked Domain. The propagation time of changes in the DNS itself of the Registro.br it's 24 hours.

 0
Author: Rubens Kuhl, 2014-03-26 03:09:56

Using a custom domain

When you create an app with Google App Engine, the app is automatically served in the domain appspot.com in seu-app-ID.appspot.com. However, it is often desirable to serve your application on a custom domain that you own (example.com), on specific subdomains of that domain (app.example.com), or on any or all (* .example.com) subdomains that domain. Second https://developers.google.com /

It's easy to do this with App Engine. First, of course, you must acquire a domain through a domain registration. Once you have a domain, customizing your application to use your domain or subdomain involves three steps:

  • Prove to Google that you control the domain.
  • Configure Google servers to recognize the domain.
  • update DNS records in the domain registrar to point to Google servers.

The whole process can usually be completed in a few minutes on your computer.

Note that the instructions on this page are for App Engine Applications that use a normal HTTP connection and are not served through Google Apps. Here are some related procedures that require different instructions:

  • to serve your Google App Engine app through Google Apps, read about the App Engine in the Google Apps Help Center.
  • to assign an additional domain to your Google Apps services, read about custom domains in the Google Apps Help Center.
  • to add Secure Sockets Layer (SSL) (i.e. an HTTPS address) to your Google App Engine app, you must use the SSL service provided with Google Apps. You will find information and instructions in SSL for a custom domain.
 0
Author: Oi Torpedo, 2014-09-06 16:08:42