Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I point Freenom domain to a Heroku app?

I want to link my domain to my Heroku rails app.

What steps should I follow? What should I enter in the following Freenom form?

What should i type over here ?

like image 790
Hassan Avatar asked Feb 08 '16 13:02

Hassan


People also ask

How do I point my domain to Heroku?

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.

Does Heroku give free domain?

Domains can be added to both free and paid Heroku apps and adding domains does not incur extra charges. For verification purposes, you must verify your Heroku account to add domains to apps.

How do I link my domain to google 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.


1 Answers

You can create a CNAME record like so:

Name  Type    TTL     Target
www   CNAME   14440   appname.herokuapp.com

You might need to setup something different to forward apex to www to that http://yourdomain.com forwards to http://www.yourdomain.com

like image 161
jolyonruss Avatar answered Sep 28 '22 08:09

jolyonruss