gpt4 book ai didi

Powershell:Azure Web 应用程序 - 将 httpsOnly 设置为

转载 作者:行者123 更新时间:2023-12-02 06:46:48 25 4
gpt4 key购买 nike

我正在通过 powershell 自动部署 Azure Web 应用程序。我不明白你如何强制启用“仅 HTTPS”。下面的代码是我最好的猜测,但它不起作用。有什么想法吗?

$properties = @{"httpsOnly" = $true}
Set-AzureRmResource -PropertyObject $properties -ResourceGroupName
$resourcegroupname -ResourceType Microsoft.Web/sites/config -ResourceName
$webappname/web -ApiVersion 2015-08-01 -Force

最佳答案

您可以使用以下脚本。

$app=Get-AzureRmResource -ResourceId "/subscriptions/<subscription id>/resourceGroups/shuiapp/providers/Microsoft.Web/sites/shuicli"
$app.Properties.httpsOnly=$true
$app|Set-AzureRmResource -Force

注意:如果您想要设置httpsOnly on,则网络应用的应用服务计划必须是付费套餐(共享、基本、标准或高级)。有关此的更多信息请查看此 link .

我也在 Visual Studio 中进行测试,它也适合我。

enter image description here

我建议您升级 Azure Power Shell 版本。

关于Powershell:Azure Web 应用程序 - 将 httpsOnly 设置为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48750525/

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