Open In App

Operating System Functionality on Azure App Service

Pre-requisite: Create an App Service Plan

Azure App Service plans to define a set of compute resources for a web app to run. These computational resources resemble the server farm used in traditional web hosting. App Service plans can be used to host web apps, mobile back ends, and API apps in Azure.



The tier of an App Service Plan is determined by the pricing tier chosen for the plan. The pricing tier determines the features and resources available to the app, such as memory, CPU, storage, and other services. The pricing tiers range from Free to Premium, with each tier offering different levels of resources. The pricing tiers can be found on the pricing page for App Service Plans.

Azure App Service Plans are categorized into Five Tiers:



  1. Free: This tier is suitable for testing and development purposes. It offers 1 GB of storage and 1 GB of monthly data transfer.
  2. Shared: This tier is suitable for small-scale applications and provides 1 GB of storage and 10 GB of monthly data transfer.
  3. Standard: This tier is suitable for large-scale applications. It provides up to 10 GB of storage and 100 GB of monthly data transfer.
  4. Premium: This tier is suitable for enterprise-level applications and provides up to 10 GB of storage and 200 GB of monthly data transfer.
  5. Isolated: This tier is suitable for applications that require complete isolation from other customers, and provides up to 10 GB of storage and unlimited data transfer.

Frameworks for Development

Access to Files

Regional Drives

  1. Azure Regional Drives are a high-performance, low-latency, and secure storage solution that provides local storage to virtual machines (VMs) running on Azure. Regional Drives are a managed storage service that provides local storage on the same Azure region as the VM.
  2. It can be used to store applications, data, and operating system files. It is designed to provide VMs with the performance of a local disk without the overhead associated with managing on-premises storage. With Regional Drives, VMs have access to local data within the same Azure region. This eliminates the need for data to be transferred over the public internet or private networks, reducing latency and improving performance.
  3. Additionally, it allows for secure access to data within the same Azure region, reducing the risk of data leakage. Regional Drives are offered in two sizes, Standard and Premium. The Standard size offers up to 32 TB of capacity with a maximum throughput of 250 MB/s, while the Premium size offers up to 64 TB of capacity and a maximum throughput of 500 MB/s.

Azure Regional Drives are a great solution for applications that require low latency and high performance. They are ideal for applications such as databases, analytics, and machine learning

Drives on a Network (UNC shares)

A UNC (Universal Naming Convention) share is a type of shared folder or drive that allows users to access files and folders stored on a remote server over the network. It is a common way of sharing data in a Windows environment.

In Azure, UNC shares can be created by creating a virtual machine and configuring a file share. The virtual machine will act as the server, and the file share will be hosted on the virtual machine. The UNC share can then be accessed by users on the network by entering the UNC path in the address bar of their file explorer. UNC paths typically begin with \\ followed by the server name, and then the name of the file share.

For example, \\server1\fileshare.

Network Access

Network access is the ability of an entity (such as a user or a device) to connect to a computer network or a system of interconnected computers. This access can be granted or denied depending on the network’s security settings and authentication methods. A user’s network access rights may be limited to certain services, applications, or machines, and they may be further restricted depending on the user’s access level and privileges. Network access is often controlled using technologies such as firewalls, access control lists, and user authentication protocols.

Code Processing and Execution

Diagnose Logs and Events

Azure App Services enable logging for applications hosted on the platform. Logs are stored in the file system and can be accessed in several ways. The most common method is to use the Kudu console, which is a web-based tool used to manage applications. By logging into the Kudu console, users can access the LogFiles directory, which contains the log files for the application. Alternatively, users can also access the log files through FTP or the Azure Portal. All log files are stored in the LogFiles directory, located in the www-root folder. Finally, users can also use the Azure Log Stream feature to view the log files in real-time. This feature is especially useful for debugging applications in production environments.

Access to an Azure App Service can be granted in several ways. Firstly, by enabling Azure Active Directory authentication and assigning role-based access control to specific users. Secondly, by creating an IP Address Restriction rule, allowing access only to a specific set of IP addresses. Thirdly, by using the URL Rewrite module to restrict access to specific URLs. Lastly, by setting up an App Service Environment, which provides a private and isolated network environment that can be used to restrict access.

Registry Access

Azure app services provide access to the registry via the Azure Container Registry (ACR) service. The ACR allows you to store and manage Docker images, as well as other types of container images. Access to the registry can be managed via role-based access control (RBAC) or through using the Azure CLI. Alternatively, the images can be accessed through the Azure portal. Additionally, Azure provides the ability to configure webhooks to trigger tasks when images are pushed to the registry.


Article Tags :