Naked Domain in Registro.br not redirecting to www

3

I have a Appengine hosted app and I'm using a domain of my own. Even after editing the DNS zone (about 5 days ago) the naked domain is still not redirected to the www.

Here are the settings in the Registry.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
    
asked by anonymous 26.03.2014 / 00:08

4 answers

1

I have added the following IPv6 values and now the 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 do not know if it's because the BR registration takes too long to update the DNS values or if the IPv6 values were really needed.

IPv6 values were found in this Google Apps Support article .

    
26.03.2014 / 03:26
0

Try to use @ (or leave blank) the Name field setting (where you're using example.com.br ) for all 4 A records pointing to Google ips. Also, if you have not already, enable the Naked Domain setting in the Google Apps administrative dashboard ( More information in English ).

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

    
26.03.2014 / 00:59
0

The @ that appears in DNS settings is automatically added by the DNS editor of the Registry.br, so just leave blank that entry refers to Naked Domain. The propagation time for changes in the DNS of the Registro.br is 24 hours.

    
26.03.2014 / 04:09
0

Using a custom domain

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

It's easy to do this with App Engine. First, of course, you must acquire a domain through a domain registrar. 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's servers to recognize the domain.
  • Update the DNS records in the domain registrar to point to Google's servers.

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

Please note that the instructions on this page are for App applications that use a normal HTTP connection and are not serviced by middle of Google Apps. Here are some related procedures that require different instructions:

  • To serve your Google App Engine application through Google Apps, read about App Engine in the Google Apps help center.
  • To assign an additional domain to your Google Apps services, read about the custom domains in the Google Apps help center.
  • To add Secure Sockets Layer (SSL) (that is, an HTTPS address) to your App Engine application, you must use the SSL service provided with Google Apps. You will find SSL information and instructions for a custom domain.
06.09.2014 / 18:04