Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gandi and Heroku set up issue

I have a domain from gandi.net, I'm trying to make it point to my heroku app. I followed several tutorials and steps, I almost did it but I'm getting this Access to bamboo HTTP endpoint denied

This is my zone file: 

@ 10800 IN A 174.129.212.2
@ 10800 IN A 75.101.145.87
@ 10800 IN A 75.101.163.44
www 10800 IN CNAME myapp.herokuapp.com

And I already added the domains using heroku CLI. myapp.com and also www.myapp.com

Any idea?

like image 308
Javier Suazo Avatar asked Feb 17 '14 23:02

Javier Suazo


People also ask

How do I use my GoDaddy domain on Heroku?

Navigate to the project folder from the terminal then type "heroku domains:add www.yourdomain.com". The domain name is the one purchased from GoDaddy. Next, log into your GoDaddy account and find the domains area in the upper left navigation tab. The domains tab will allow you to choose a domain then launch.

Can Cname point to root domain?

A CNAME cannot be placed at the root domain level, because the root domain is the DNS Start of Authority (SOA) which must point to an IP address. CNAME records must point to another domain name, never to an IP address.

What is DNS Cname?

A Canonical Name or CNAME record is a type of DNS record that maps an alias name to a true or canonical domain name. CNAME records are typically used to map a subdomain such as www or mail to the domain hosting that subdomain's content.

How do I add Google domain to Heroku?

First open your app in the Heroku web page, then click the "Settings" button https://dashboard.heroku.com/apps/{your app name} Scroll down until you see the "Domains" section, Then click "Add domain" https://dashboard.heroku.com/apps/{your app name}/settings. Input the domain name you purchased from google (eg.


2 Answers

Gandi does NOT support ALIAS/ANAME. How to point both www subdomain and bare domain at your Herokuapp

@ 10800 IN A 217.70.184.38 #this is Gandi's IP address
www 10800 IN CNAME your-app.herokuapp.com.
  • a web forwarding set up.(301 permanent redirect from bare domain to www.projectborrow.com). For Gandi, web forwarding is not adjusted in the zone files, it's a separate page that you access from the domain page in the box on the upper right (where you do email).
like image 187
james Avatar answered Sep 20 '22 03:09

james


You need to get rid of the A records because Heroku no longer supports them. www.yourdomain.com should still work with that config though.

If you want to point the naked domain at your app on Heroku then you'll need to create an ALIAS record and I'm not sure if Gandhi supports these.

like image 25
Simon Avatar answered Sep 21 '22 03:09

Simon