将从hostinger购买的自定义域添加到heroku上托管的web应用程序时,DNS提供商端的配置



我希望我的自定义域指向我在heroku上托管的Web应用程序。我需要关于如何在hostinger端进行配置的帮助。我已经完成的步骤。

  1. 从hostinger购买了域名
  2. 在heroku应用程序上,我运行了以下命令
$ heroku domains:add samplecustomdomain.com
$ heroku domains:add www.samplecustomdomain.com
$ heroku domains
This command gives output something like -
Domain Name                   DNS Record Type    DNS Target                                              
samplecustomdomain.com        ALIAS or ANAME     xyz1.herokudns.com     
www.samplecustomdomain.com    CNAME              xyz2.herokudns.com 
  1. 在Hostinger端,点击manage-samplecustomdomain.com后,我得到了两个选项卡进行设置。

    a(域管理-它有更新名称服务器、创建子名称服务器等选项

    b(DNS区域-它有添加选项,如A(主机(、CNAME(别名(、MX(邮件交换器(、TXT(文本(、AAAA(IPv6地址记录(、NS(名称服务器(、SRV、CAA*

我想我必须修改CNAME(别名(才能注册我的应用程序。在CNAME(别名(下,我必须提供以下字段的值

Host       -
Points to  -
TTL        - 

请帮助提供上述字段需要提供的值。

在您的DNS区域上,添加一个ALIAS/ANAME/CNAME记录(如果Hostinger有ALIAS或ANAME,请使用它,如果没有,则可以使用CNAME(:

Host       samplecustomdomain.com
Points to  xyz1.herokudns.com
TTL        3600 (or use the default if there's any)

然后添加CNAME记录:

Host       www.samplecustomdomain.com
Points to  xyz2.herokudns.com
TTL        3600 (or use the default if there's any)

如果您已经有上述记录的记录,则需要删除或编辑现有记录以反映上述情况。

相关内容

  • 没有找到相关文章

最新更新