自定义域将打开“自定义域” Pane ,其中包含“仅限 Https”选项。将此选项设置为-6ren">
gpt4 book ai didi

azure - 如何使用 ARM 模板为我的 Azure Web 应用程序设置 "Https only"?

转载 作者:行者123 更新时间:2023-12-02 12:32:36 24 4
gpt4 key购买 nike

我知道如何在 Azure 门户中手动设置仅 Https。在 Azure 门户中导航到我的 Web 应用程序 > 自定义域将打开“自定义域” Pane ,其中包含“仅限 Https”选项。将此选项设置为“打开”可启用我正在寻找的功能。我在 Benjamin Perkins Blog 上找到了如何手动执行此操作。不幸的是,它没有包含如何使用 ARM 模板以自动化方式解决问题的描述。

如何在 ARM 模板中设置此“仅限 Https”标志,以便在部署中自动执行此设置?假设我已经有一个有效的 ARM 部署,并且只需要知道专门为此设置在模板中添加什么以及在哪里添加内容。

我想保留基于 ARM 模板的方法的答案。

感谢您的宝贵时间!

最佳答案

是的,这是可能的。你可以检查这个linkhttpsOnly 是属性中的一个值。例如:

{
"apiVersion": "2015-08-01",
"name": "[parameters('webSiteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"tags": {
"[concat('hidden-related:', resourceGroup().id, '/providers/Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]": "Resource",
"displayName": "Website"
},
"dependsOn": [
"[concat('Microsoft.Web/serverfarms/', parameters('hostingPlanName'))]"
],
"properties": {
"name": "[parameters('webSiteName')]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]",
"httpsOnly": true
}
}

ps。模板引用可能包含错误,请使用 api 引用(它并不完美,但更好)。

关于azure - 如何使用 ARM 模板为我的 Azure Web 应用程序设置 "Https only"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49445284/

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