Heroku Networking
By default, Heroku creates an endpoint for your application like this:
https://bridges-a-api.herokuapp.com/
This is okay, but if you want to use your custom product domain (e.g. a-api.bridgestoprosperity.dev
) for your API, you can do this using Route 53.
In your Heroku application settings, click Add Domain
Your domain name will be a subdomain of your product domain, following the naming standards. For example, if your product domain is
bridgestoprosperity.dev
and your team letter is 'a', your API domain will bea-api.bridgestoprosperity.dev
Heroku will now issue you a specially generated domain to link traffic to your API subdomain
Open Route 53 in your AWS account
Open the hosted zone for your product
Click Create Record
Simple Routing
Define simple record
Record name: Your API domain (e.g.
a-api)
Route traffic to: IP address or another value
Value: The generated name from Heroku (e.g.
concentric-turtle-7byvtq3pnb7n316b8zeu6peq.herokudns.com
)Record type: CNAME
Define simple record
Create records
Now you may need to wait a while for the internet DNS system to catch up
But once it does, you can now hit your Heroku app using
a-api.bridgestoprosperity.dev
Done!
What's Next
If you haven't already setup Review Apps then head over to the guide for more info
Last updated
Was this helpful?