Questions tagged [amazon-route53]

Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.

Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service. It is designed to give developers and businesses an extremely reliable and cost effective way to route end users to Internet applications by translating human readable names like www.example.com into the numeric IP addresses like 192.0.2.1 that computers use to connect to each other.

608 questions
3
votes
3 answers

DNS mask for Route53 crazy delegation set

I have an AWS Route53 with a lot of clients, and I would like to build something like a DNS server in Bind9 so I can send allow my clients to use the same DNS on their registars, and then I would manage which goes where within this EC2 with bind. I…
3
votes
2 answers

Creating sub-sub-domain on Amazon Route 53

I'm trying to get my development environment as such: dev.domain.com dev.admin.domain.com qa.domain.com qa.admin.domain.com I've created them just like I would create a sub-domain on the Route 53 page but it does not work. Anything I am missing?
Mike C.
  • 151
  • 1
  • 4
3
votes
2 answers

Managing Many External Hosts Using EC2 and Route 53

Looking for a "best practice" answer to managing externally-addressable hosts using the combination of Amazon EC2 and Amazon Route 53, without using Elastic IPs for each host. In my scenario I will have 30+ hosts that need to be accessible from…
futureal
  • 397
  • 1
  • 3
  • 17
3
votes
2 answers

Clarify benefits of anycast DNS - shouldn't DNS caching make it irrelevent?

We're trying to make a decision between using our hosting company for DNS or using Amazon's Route 53. One of the benefits of touted by Amazon about Route 53 is that it uses Anycast which means that their DNS servers are distributed throughout the…
user82186
  • 43
  • 2
3
votes
1 answer

Amazon Route 53 Forward Subdomain

I bought a domain from GoDaddy, say abc.com. I was able to forward profile.abc.com to http://www.linkedin.com/in/myname. Not I've changed my domain nameserver to Amazon Route 53, I want to do the same thing but wasn't able to do so, here's what I've…
Derek Li
  • 143
  • 1
  • 5
3
votes
2 answers

How long it will take a newly registered Domain Name in Route53 to work?

I'm new to website hosting. Today i registered a new domain name in Route53 and tried to connect my EC2 instance ip to it. I can notice that the domain name is moved from registration pending list to registered list, which seemed fruitful. So, I…
vijayraj34
  • 161
  • 1
  • 7
3
votes
3 answers

How to set Amazon Route53 for multiple distinct domains on the same IP address?

I have two different domain names with completely different websites. This is how my nginx configuration looks like: server { listen 80; server_name domainnameone.com; location / { proxy_pass http://localhost:3000; …
Dong
  • 135
  • 5
3
votes
2 answers

AWS - our site throws a 502 when we use our certificate

We're having a problem where we can't access our site over HTTPS when using a valid certificate. We have a domain, registered in Route53, and a certificate. We have a load balancer: our-production-elb-1234567.eu-west-2.elb.amazonaws.com We have two…
userqwert
  • 145
  • 1
  • 5
3
votes
1 answer

Is Domain A Record pointing to Elastic IP prone to Attackers?

Currently I have working fine ec2 instance and the DNS A Record is pointed to my elastic ip Is it risky to point it on elastic ip? or should I point my DNS A record to my load balancer link?
Pablo
  • 255
  • 1
  • 4
  • 11
2
votes
1 answer

I post a domain challenge TXT record to AWS Route 53, but Let's Encrypt doesn't see it

I finally got certbot-auto installed on the AWS EC2 Linux instance that was giving me trouble, and I'm trying to get a wildcard cert from Let's Encrypt. I was told to put up a TXT record under the name (changed to protect the innocent)…
hbquikcomjamesl
  • 259
  • 2
  • 16
2
votes
1 answer

How do I remove a DS record from my parent zone using Amazon Route 53?

My website is currently inaccessible due to the presence of a DS record in the parent zone, when I am using nameservers that don't support DNSSEC. See this question for more context. I am using Amazon Route 53 as my registrar, and I can't see a way…
2
votes
2 answers

Redirecting HTTPS -> HTTPS on AWS?

I have a static website w/ S3 + Route53 + Cloudfront set up. I am successfully able to do the following redirects: http://example.com -> https://example.com http://www.example.com -> https://example.com https://example.com -> https://example.com (no…
2
votes
2 answers

NS and SOA records not propagated after migration from Route 53

I recently transferred a domain helloorbital.com from GoDaddy to Route 53. However, when I used WhatsMyDNS to check my SOA and NS records, they are still pointing to the old registrar's records, how can I get my records to properly propagate…
2
votes
1 answer

How to set up no www on Route 53, site hosted by Glitch.com?

I’m trying to set up my site, www.jdipasquale.com to be found without including the www at the start. I’m confused on how to set this up in my Route 53. I heard I need to find some sort of IP or host name. My code for my site is also hosted by…
Jerry D
  • 123
  • 5
2
votes
1 answer

DNS CNAME to NS record for AWS

I am working on a project in AWS where the domain name that we need to use isn't controlled by us. So, they have CNAME'd a subdomain to us. In our F5, we added a NS record for the AWS nameserver that was assigned in route53. When I do a dig on the…