...

/

Hosting Services: App Service Plan/App Service

Hosting Services: App Service Plan/App Service

Learn and practice Azure App Service and Azure App Service Plan.

Introduction

In this lesson, we will learn about two essential Microsoft Azure services. The App Service plan and the App Service.

Azure App Service is a PaaSPlatform as a service Microsoft Azure resource that hosts web applications and RESTful APIs developed in several programming languages, including .NET, .NET Core, Java, and PHP. The Azure App Service plan is the underlying compute environment that Azure App Service uses. All Azure App Services with the same plan share the same compute resources. A single Azure App Service plan can host multiple Azure App services. Behind the scenes, Azure App service plans run on Azure VMs. However, we do not need to bother about those VMs as Microsoft manages them on our behalf, as we use Azure App Service as a PaaS service.

The figure below illustrates the relationship between Azure App Service and Azure App Service Plan.

Press + to interact
Relationship between App Service Plan and App Services
Relationship between App Service Plan and App Services

Benefits of Azure App Service

Azure App services offer a wide variety of benefits, including but not limited to the following:

  • Support a wide range of programming languages: It supports .NET, Node, PHP, and Python, among many others.
  • Support for Linux: If your application runtime requires the Linux operating system, App Service helps that too.
  • Built-in auto-scale support: We can use Azure App
...