1

I have a React website which I would like to host on AWS Cloudfront with custom domain.

I created s3 bucket with option for static content hosting and I created Cloudfront distribution.

I can open the Cloud distribution using the distribution domain name d1srvdzuzxvion.cloudfront.net

I created a hosted zone and I added DNS records

enter image description here

But again when I open the domain into my browser it's not working. Can you advise what might be wrong?

Peter Penzov
  • 1,126
  • 134
  • 430
  • 808

2 Answers2

2

The NS records you show above, do not actually match what a DNS lookup is returning:

NS-1337.AWSDNS-39.ORG 
NS-1871.AWSDNS-41.CO.UK 
NS-245.AWSDNS-30.COM 
NS-842.AWSDNS-41.NET

https://whois.domaintools.com/hireya.org

You are going to need to figure out that one first.

E.J. Brennan
  • 45,870
  • 7
  • 88
  • 116
0

Looks like you enabled DNSSEC but did not configure it properly. Whois returns DNSSEC: unsigned

This tool reports no DS records found https://dnssec-analyzer.verisignlabs.com/hireya.org. You either need to configure these records or disable DNSSEC.

More info https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-configure-dnssec.html

Chris
  • 3,795
  • 3
  • 17
  • 23
  • This is the solution https://stackoverflow.com/questions/35969976/amazon-aws-route-53-hosted-zone-does-not-work/58604183#58604183 wrong DNS – Peter Penzov Aug 17 '22 at 21:39