我如何删除 Azure WebApp AppSetting WEBSITE_TIME_ZONE

How can i remove the Azure WebApp AppSetting WEBSITE_TIME_ZONE

当我在我的 Azure Web 应用程序 (Linux) 中删除 AppSetting“WEBSITE_TIME_ZONE”时,它在刷新后又出现了。

我可以毫无问题地删除其他 AppSettings,但这个特定的条目总是回来。

我就是这样进行的。我通过垃圾桶按钮删除设置“WEBSITE_TIME_ZONE”,单击“保存”(然后条目消失),然后单击“刷新”,然后条目再次显示。

有没有人遇到过这个问题可以帮助我?

请尝试通过命令行删除该特定应用设置。

az webapp config appsettings delete 是 Azure CLI 命令:

az webapp config appsettings delete --name <your-webapp-name> --resource-group <resource-group> --setting-names <setting-names>

P.S.: 如果您的机器上没有安装 Azure CLI,您可以使用 Azure Cloud Shell