views:

431

answers:

1

I have configured my domain to heroku IPs 75.101.163.44 75.101.145.87 174.129.212.2

But it's not redirecting my app to my domain. The error says

There is no app configured at that hostname. Perhaps the app owner has renamed it, or you mistyped the URL.

Does each Heroku app have its own IP address? If so how to get the unique IP and how to redirect it to domain. Thanks.

A: 

Just follow these instructions and use the free Zerigo DNS Add-On. It's pretty easy.

Heroku applications don't have a static IP address because they're distributed across nodes in Heroku's dyno grid.

John Topley
Heroku applications, by default, don't have static IP addresses because they're distributed across Amazon EC2 instances, which by default don't have static IP addresses. However, if you select the Custom SSL addon, Heroku will reserve an EC2 instance with a static IP address and place your app on that EC2 instance.
Justice