Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I point to a custom domain for free on Heroku? [closed]

Tags:

heroku

When I go to the Heroku dashboard it clearly says:

http://dl.dropbox.com/u/30200856/Screen%20shot%202013-02-13%20at%203.20.03%20PM.png
"Free: Heroku branded domain" "Basic ($18 per month): custom domain"

After extensive searching on google I found others talking about how you can point to a custom domain for free:

  1. http://jayzawrotny.com/blog/host-your-app-for-free-with-heroku
  2. do you use Heroku to write Ruby on Rails app?
  3. http://ididitmyway.herokuapp.com/past/2010/8/3/custom_domain_names_on_heroku_/
  4. Should I deploy my Ruby on Rails application on Heroku
  5. Heroku free account limited?

I followed instructions as found on google to type in my console

heroku addons:add custom_domains  

but it said "App not found"

Did Heroku become un-free a while ago? What is necessary to have a custom domain for free?

like image 811
pete Avatar asked Feb 12 '13 12:02

pete


People also ask

Can I use custom domain on Heroku for free?

You can add custom domains to any Heroku app. Adding domains does not incur extra charges. For security purposes, you must verify your Heroku account to add domains to apps.

How can I add my domain to Heroku without credit card?

No, it is not possible to add a domain without adding a payment method. Adding a payment method makes your account a verified account and it also gives you 450+ dyno hours. Payment methods: Visa, MasterCard, American Express, Discover and JCB credit cards are accepted.

How do I redirect my domain to Heroku?

Go to the record editor and two DNS records, one for each host name, pointing to the Heroku SSL endpoint: Add an ALIAS record to point example.com to Heroku. Leave the Name of the record empty and set the Content field to the SSL endpoint example.com.herokudns.com. Add a CNAME record to point www.example.com to Heroku.

Is Heroku free forever?

Free Services on HerokuHeroku offers a free plan to help you learn and get started on the platform. Heroku Buttons and Buildpacks are free, and many Heroku Add-ons also offer a free plan.


1 Answers

(1) How do I point to a custom domain for free on Heroku?

The Zeringo DNS addon has a Basic tier, which is free. This provides you with 1 domain per app, 10 host records, and 50,00 queries per month.

(2) I .. typed "heroku addons:add custom_domains" in my console but it said "App not found"

The Heroku Addons Catalog stores details of most Heroku addons. The Custom Domains add-on entry reads: The Custom Domains add-on is now a standard platform feature.

It looks like the 'custom domains' add-on has been discontinued and merged. This could explain the 'App Not Found' error.

(3) Did Heroku [custom domains] become un-free?

The Dev Center Article discusses setting up a custom domain by working with your DNS provider. This likely costs whatever your provider charges, which has nothing to do with Heroku, but might not have been explicitly mentioned in blog articles.

like image 165
culix Avatar answered Sep 28 '22 04:09

culix