Home > Software engineering >  Azure App Service hosting internal technology
Azure App Service hosting internal technology

Time:11-27

When I host a .NET Core application in Azure App Service, it takes a web.config custom headers configuration, same as in IIS.

Which technology is used in the Azure App Service to host a .NET Core web application?

CodePudding user response:

Thank you Lex Li for your suggestion posting it as answer to help other community members .

"Azure app service is just a name. you can either host your web app on Windows (IIS) or Linux or on Docker, as you said web.config takes effect, you were using the Windows based App Service hosting plan."

  • According to that when we host our application in Azure app service there will be no change in our application .

Please refer the below links for more information :

MS DOC : Quickstart: Deploy an ASP.NET web app

MS DOC: ASP.NET Web Deployment using Visual Studio: Web.config File Transformations.

MS DOC : Troubleshoot ASP.NET Core on Azure App Service and IIS

  • Related