将默认 DNS 域名添加到 Azure Web 应用程序
Add a default DNS domain name to azure Web app
我正在创建一个名为 "CustomerX-app-001" 的 Azure Web 应用程序,Azure 在创建 Azure Web 应用程序后创建的默认自定义域是:"Customerx-app-001.azurewebsites.net".
在我的 arm 模板中,我尝试通过执行以下 2 个解决方案将此默认主机名更改为 "Customerx-app.azurewebsites.net":
在微软的资源块中添加hostnamebinding资源web/sites
"resources": [
{
"type": "hostNameBindings",
"apiVersion": "2018-11-01",
"name": "[concat(parameters('CustomHostname'), '.azurewebsites.net')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('siteName'))]"
],
"properties": {
"siteName": "[parameters('siteName')]"
}
},
**在外部添加主机名绑定资源作为新资源块**
{
"type": "Microsoft.Web/sites/hostNameBindings",
"apiVersion": "2018-11-01",
"name": "[concat(parameters('siteName'), '/', parameters('CustomHostname'), '.azurewebsites.net')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('siteName'))]"
],
"properties": {
"siteName": "[parameters('siteName')]",
"hostNameType": "Verified"
}
}
CustomHostname 为:"Customerx-app",站点名称为 "Customerx-app-001"
两种解决方案都给了我同样的错误:
"Code": "BadRequest",
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1.",
"Target": null,
"Details": [
{
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1."
},
{
"Code": "BadRequest"
},
{
"ErrorEntity": {
"ExtendedCode": "04017",
"MessageTemplate": "Too many ({0}) hostnames in the default DNS zone. Limit is {1}.",
"Parameters": [
"2",
"1"
],
"Code": "BadRequest",
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1."
}
}
我在这上面停留了一段时间,并弄清楚了为什么会出现这个问题。
我认为 azure web 应用程序有 1 个默认的 DNS 名称,你不能更改它,它始终是 web 应用程序的名称。如果需要添加另一个 DNS 名称,则应创建一个新的 DNS 记录,并且可以将此记录添加到 Web 应用程序。但解决方案 2 确实如此,唯一的区别是 DNS 名称不存在。
有没有人可以帮助我,或者指导我正确的方向?
您只能使用一个 *.azurewebsites.net
dns 名称,它是自动生成的。您只能在您拥有的域上添加 dns 名称(并且您必须先验证它)。
我正在创建一个名为 "CustomerX-app-001" 的 Azure Web 应用程序,Azure 在创建 Azure Web 应用程序后创建的默认自定义域是:"Customerx-app-001.azurewebsites.net".
在我的 arm 模板中,我尝试通过执行以下 2 个解决方案将此默认主机名更改为 "Customerx-app.azurewebsites.net":
在微软的资源块中添加hostnamebinding资源web/sites
"resources": [
{
"type": "hostNameBindings",
"apiVersion": "2018-11-01",
"name": "[concat(parameters('CustomHostname'), '.azurewebsites.net')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('siteName'))]"
],
"properties": {
"siteName": "[parameters('siteName')]"
}
},
**在外部添加主机名绑定资源作为新资源块**
{
"type": "Microsoft.Web/sites/hostNameBindings",
"apiVersion": "2018-11-01",
"name": "[concat(parameters('siteName'), '/', parameters('CustomHostname'), '.azurewebsites.net')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/sites', parameters('siteName'))]"
],
"properties": {
"siteName": "[parameters('siteName')]",
"hostNameType": "Verified"
}
}
CustomHostname 为:"Customerx-app",站点名称为 "Customerx-app-001"
两种解决方案都给了我同样的错误:
"Code": "BadRequest",
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1.",
"Target": null,
"Details": [
{
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1."
},
{
"Code": "BadRequest"
},
{
"ErrorEntity": {
"ExtendedCode": "04017",
"MessageTemplate": "Too many ({0}) hostnames in the default DNS zone. Limit is {1}.",
"Parameters": [
"2",
"1"
],
"Code": "BadRequest",
"Message": "Too many (2) hostnames in the default DNS zone. Limit is 1."
}
}
我在这上面停留了一段时间,并弄清楚了为什么会出现这个问题。 我认为 azure web 应用程序有 1 个默认的 DNS 名称,你不能更改它,它始终是 web 应用程序的名称。如果需要添加另一个 DNS 名称,则应创建一个新的 DNS 记录,并且可以将此记录添加到 Web 应用程序。但解决方案 2 确实如此,唯一的区别是 DNS 名称不存在。
有没有人可以帮助我,或者指导我正确的方向?
您只能使用一个 *.azurewebsites.net
dns 名称,它是自动生成的。您只能在您拥有的域上添加 dns 名称(并且您必须先验证它)。