Reputation: 5003
I bought a domain name on network solutions. I have a working app at blooming-summer-8571.herokuapp.com. I want my domain name on network solutions to point to this app. So in the CNAME records. It has a box for alias, ttl, and a drop down menu for @ (none) or www . Then there is another option you can check (instead of the drop down menu) to fill out an other host name.
So which is the alias? Should I check other host name and put in the heroku app's url? This is all done under my DNS settings for the domain I purchased so I assume that I don't have to fill it out anywhere? The online resources I have found are rather unhelpful.
Upvotes: 5
Views: 10124
Reputation: 4216
A CNAME (Canonical Name) record is only for domains that you can control and points the canonical name to the correct domain name. What you need to do is point your domain to your Heroku app by following the steps in the following: https://devcenter.heroku.com/articles/custom-domains
The article does state to use CNAME to point to blooming-summer-8571.herokuapp.com (cedar server)
Upvotes: -1
Reputation: 3440
I just went through the same thing.
This will point www.YOURDOMAIN.com to YOURAPP.herokuapp.com
To make sure it worked (give it some time before checking) open up a terminal window and type :
host www.YOURDOMAIN.com
It should respond with something like ..
www.YOURDOMAIN.com is an alias for YOURAPP.herokuapp.com.
Resources:
https://devcenter.heroku.com/articles/custom-domains#domain-precedence
http://www.networksolutions.com/support/how-to-forward-your-network-solutions-domain-name-to-a-free-blog-service/
Upvotes: 3
Reputation: 1
Just discovered that this page is extremely helpful for this:
Basically you just need to delete all your A records, and point the @ one to the IP 205.178.189.129. Then, as long as you have a valid CNAME record for 'www' (in the case of Heroku, it'd point to your app's heroku URL), Network Solutions will correctly forward all traffic to your www CNAME.
Upvotes: 0