Home > Software engineering >  Why will my DNS not direct to my Heroku app?
Why will my DNS not direct to my Heroku app?

Time:08-24

I have a Django application I have built and deployed on Heroku. I have a custom domain I wish to use for my Heroku application. The application works perfectly on the enter image description here

I have added the DNS information as a CNAME on my Godaddy DNS Management:

enter image description here

I can guarantee the DNS Target on Heroku perfectly matches the DNS Data on Godaddy. The one and only difference between the two strings is the "." that godaddy appends at the end of the data. Despite the fact that everything looks just right to me, I've waited plenty of time for the DNS servers to propagate, I still get this error when I got to enter image description here

What am I missing / doing wrong?

CodePudding user response:

You have added in heroku dinpodcast.com and not www.dinpodcast.com.

Repeat the entire procedure with the correct domain name, and remember to add your domain in the ALLOWED_HOST in the settings.py

  • Related