gpt4 book ai didi

azure - 使用 new-azwebapp 时如何选择运行环境?

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

我目前正在构建一个脚本来自动创建 Azure Web 应用程序。前端是用 React 构建的并且部署得很好。后端是使用node构建的,发布时不会运行。我认为默认情况下 New-AzWebApp 创建一个 .net windows 运行时环境,而我想要一个 Linux node.js 环境。我需要知道如何在 azure powershell 脚本中设置它。

我已经尝试在创建应用程序后更改应用程序设置。通过 Set-AzWebApp 将 WEBSITE_NODE_DEFAULT_VERSION 更改为 10.16.3

New-AzWebApp -Name backend$webappname -Location $location -AppServicePlan $webappname -ResourceGroupName discoverTest$workItemId `

这将创建应用程序,但上传文件后应用程序不会运行。我认为我需要正确的运行时环境,但我不知道如何设置它。

最佳答案

首先,确保您的资源组中有 Linux 应用服务计划。并参见Supported Versions of Node.js在 Linux 上的 Azure 应用服务中,可能不支持 10.16.3

enter image description here

然后您可以尝试以下命令,我的示例使用 10.14 node.js 版本。

#Create a Linux web app
New-AzWebApp -ResourceGroupName <ResourceGroupName> -Name <web-app-name> -AppServicePlan <linux-app-service-plan-name>
#set it with node.js 10.14
$config = Get-AzResource -ResourceGroupName <ResourceGroupName> -ResourceType Microsoft.Web/sites/config -ResourceName "<web-app-name>" -ApiVersion 2018-02-01
$config.Properties.linuxFxVersion = "NODE|10.14"
$config | Set-AzResource -ApiVersion 2018-02-01 -Force

enter image description here

关于azure - 使用 new-azwebapp 时如何选择运行环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57821251/

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