Azure webapp: Stack settings

后端 未结 1 1913
伪装坚强ぢ
伪装坚强ぢ 2021-01-13 06:47

I can set my stack for a webapp through the portal:

I deploy my infra through an ARM template:

 \"apiVersion\": \"2015-08-01\",
  \"type\": \"Micros         


        
相关标签:
1条回答
  • 2021-01-13 07:14

    Stack settings is to set what kind of language and the version of it that you want to use.App Service support six kind of language stacks: ASP.NET Core Node.js PHP Python Java Ruby. If you create on windows, there are 5 stacks can selected on portal(.NET .NET Core PHP Python Java). If you choose linux, there are 7 stacks can selected on portal(Ruby Node PHP .NET Core Java8 Java11 Python).

    It looks like you create a app service on windows OS, so after initial web app creation, there isn’t a need to identify that an app is a .NET Core app anymore because the .NET Core bits are already installed on the underlying worker. You can have a look of this Offical doc to learn more about Azure App Service Configuration.

    0 讨论(0)
提交回复
热议问题