如何通过 ARM 模板设置 Azure App Service Stack 和 Platform?
How to set Azure App Service Stack and Platform via ARM template?
我想使用 ARM 模板设置 Azure 的应用服务平台和堆栈设置。
应该向 ARM 模板添加什么来设置这些值?
我希望能够将 .NET 版本设置为 .NET Core 3.1,将平台设置为 x64 或 x32。
在 properties
内的 siteConfig
块中,添加以下内容:
"metadata": [
{
"name": "CURRENT_STACK",
"value": "dotnetcore"
}
],
"use32BitWorkerProcess": false,
我想使用 ARM 模板设置 Azure 的应用服务平台和堆栈设置。 应该向 ARM 模板添加什么来设置这些值?
我希望能够将 .NET 版本设置为 .NET Core 3.1,将平台设置为 x64 或 x32。
在 properties
内的 siteConfig
块中,添加以下内容:
"metadata": [
{
"name": "CURRENT_STACK",
"value": "dotnetcore"
}
],
"use32BitWorkerProcess": false,