Mobile app version of vmapp.org
Login or Join
Shakeerah822

: DNS A Records with 1and1 and Heroku I have a domain name registered through 1and1.com that I'd like to point to my Heroku app (mydomain.com and www.mydomain.com). Heroku's instructions (http://devcenter.heroku.com/articles/custo

@Shakeerah822

Posted in: #Dns #Heroku

I have a domain name registered through 1and1.com that I'd like to point to my Heroku app (mydomain.com and mydomain.com). Heroku's instructions (http://devcenter.heroku.com/articles/custom-domains) say:


Root domains (mydomain.com) must use A records To setup your root domain, add separate A records for each of the following addresses using your DNS management tool:
75.101.163.44,
75.101.145.87,
174.129.212.2


However 1and1 only allows one A record IP.

Is it sufficient to pick one of Heroku's three IPs, or is there a different way that I should set this up?

Thanks

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Shakeerah822

2 Comments

Sorted by latest first Latest Oldest Best

 

@Connie744

It seems the easy way to do it now is with Point DNS. They have a free developer plan: devcenter.heroku.com/articles/pointdns
Enter the Point DNS servers into the 1and1 Domain Managment page.

10% popularity Vote Up Vote Down


 

@RJPawlick198

You can get away with picking up one of the IPs, however the 3 IPs exist for redundancy & load balancing. So you'll miss out on that. For example if the one IP you pick is down, you'll lose access.

BTW, I don't know why 1and1 only allows you to setup one A records. It should be possible to add multiple A records, maybe the option is hidden somewhere. You should try contacting them to resolve this.

If not, see if this setup works:

yourdomain.com CNAME foo.yourdomain.com.
foo.yourdomain.com. A 75.101.163.44
foo.yourdomain.com. A 75.101.145.87
foo.yourdomain.com. A 174.129.212.2

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme