Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Heroku: "currently in use by another app" when I added my domain

I want to redirect my domain "cultiva.bilsa.com" to Heroku app "cultiva.herokuapp.com". Some reason, when I want to add this domain, Heroku said to me "cultiva.bilsa.com currently in use by another app". I have never been added so far. I follow this page and I don't know what is wrong.

like image 808
pegatron Avatar asked Mar 13 '13 16:03

pegatron


People also ask

How do I connect my Heroku app to my domain?

Summary of stepsAdd the custom domain to your app with the heroku domains:add command. Look up the Heroku-supplied DNS target for the custom domain using the heroku domains command. Configure your app's DNS provider to point to the Heroku-supplied DNS target. Confirm that your app is accessible via the custom domain.

How do I point my 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.

Can you use a GoDaddy domain with Heroku?

Yes, Heroku can work with Godaddy by setting up a Custom Domain and configuring a DNS target to make your app accessible on this platform.

How do I add a domain to Heroku without a credit card?

No, it is not possible to add a domain without adding a payment method.


2 Answers

You can determine all of the domains you are using in an account with the following bash one liner:

heroku apps > heroku_apps_list; for i in `cat heroku_apps_list`; do heroku domains --app $i ; done

This is useful if you have many apps and many different domains on Heroku.

like image 155
M O T Avatar answered Oct 01 '22 20:10

M O T


Like Eric said the domain was already registred, and never released. You have to use the release tool to release your domain, and after that associate the app to your domain:

https://tools.heroku.support/domain-release

You'll need to be able to verify your ownership of this domain adding a TXT record.

like image 38
Matías González Avatar answered Oct 01 '22 20:10

Matías González