gpt4 book ai didi

azure - Azure 应用程序网关的自定义域

转载 作者:行者123 更新时间:2023-12-04 05:47:01 25 4
gpt4 key购买 nike

我正在尝试使用自定义域名创建应用程序网关,但不断收到错误消息“无法指定域名标签”。

我想知道我是否做错了什么,或者 azure 应用程序网关不可能拥有自定义域名?

最佳答案

以下是我在 Azure 应用程序网关方面学到的经验教训:

1.) Application gateway does _not_ support statically addressed public IPs
2.) Application gateway does _not_ support public IPs with a DNS name (e.g. somename.cloudapp.net)
3.) The application gateway’s DNS name _should_ be used to create a CNAME record which points to a friendly DNS (i.e. myawesomesite.com)
4.) The use of an A-record is _not_ recommended because the VIP may change on restart of the application gateway

运行此 powershell 脚本以获取网关 DNS:

Login-AzureRmAccount
Set-AzureRmContext -SubscriptionName '<Azure Subscription Name>'

$resourceGroup = 'myresourcegroup'
$pubIpName = 'mypubip'

Get-AzureRmPublicIpAddress -ResourceGroupName $resourceGroup -Name $pubIpName

在上面的脚本返回的内容中查找类似的内容:

DnsSettingsText: {
"Fqdn": "00000000-1111-2222-3333-444444444444.cloudapp.net"
}

FQDN 是您用来设置 CNAME 的名称。

关于azure - Azure 应用程序网关的自定义域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37752482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com