Registered domain with AWS Route 53 now routes to ghandi.net

amazon-route53amazon-web-servicesdomain-name-system

I registered a new domain in .news TLD (example.news) with Route53. I created a corresponding S3 public bucket (www.example.news) with a single index.html that says hello world. I made the necessary changes to make the S3 bucket public and I can open the public address of the S3 bucket (http://www.example.news.s3-website-us-east-1.amazonaws.com/) from my browser and see hello world.

In Route53, I created 2 alias records (example.news, www.example.news) and pointed them to my S3 bucket. I waited 1-2 minutes and loaded the domain in my browser and see hello world load as expected. I made no other changes, but I refreshed the browser a few minutes later and now my domain routes to Gandi with a default page with marked up text:

This domain name has been registered with Gandi.net

View the WHOIS data for example.news to see the domain’s public
registration information.

Also, example.news changes automatically to www.example.news, which seems to suggest my alias records are working.

Why is my domain routing to Gandi when I registered it with Route53? Is there an issue with my nameservers perhaps? What do you recommend to trace down this issue?

edit:
Here is a screenshot of what I see (used inspect to change the domain to example.news):

enter image description here

Best Answer

When you purchase a domain through AWS-Route 53, a host zone is automatically added with that domain name.(By default, NS and SOA record sets are registered.)

Also register a record set of type A-IPv4. In "Value", enter the IPv4 of the instance you are using.

Check your domain name server under "Registered Domains". It must be the same as the name server listed in the NS of the host zone.

Once you're all set up, Wait for a while and clear all browser cache. Then connect and verify your domain.

Related Topic