1

我在 azure 上有一个网络应用程序,我想app_offline.htm通过以下方式在默认文档中添加一个值azure cli 2.0在此处输入图像描述

我看了看az webapp config appsettings set,但这设置了配置而不是默认文档。

有人遇到过这个吗?
是否有通过 CLI 而不是通过 Azure UI 手动执行此操作的解决方案?

4

2 回答 2

3

当然可以。

您可以尝试下面的命令,替换<yourresourcegroup>and <yourwebappname>,它在我这边工作正常。

az resource update --resource-group <yourresourcegroup> --resource-type "Microsoft.Web/sites/config" --name <yourwebappname>/config/web --add properties.defaultDocuments app_offline.htm

在此处输入图像描述

于 2018-06-05T05:11:42.380 回答
0

目前在 Azure CLI 2.0 中无法更改该设置,但如果您可以在此处提交问题(最好来自客户,则更好)。

但是,您现在可以使用Azure PowerShell来实现这一目标。

$webapp = Get-AzureRmWebApp -ResourceGroupName rg -Name name
$webapp.SiteConfig.DefaultDocuments.Add("new.html")
Set-AzureRmWebApp $webapp
于 2018-06-05T07:25:04.437 回答