App Services Tutorials & Guides
Explore hands-on tutorials and guides to help you leverage the full power of Azure App Services for your web applications.
Deploying a Web App with CI/CD Pipeline
Learn how to set up a continuous integration and continuous deployment pipeline for your web application using Azure DevOps and App Services.
Read Tutorial
# Azure CLI command to create an App Service Plan
az appservice plan create --name MyPlan --resource-group MyResourceGroup --sku B1 --is-linux
# Azure CLI command to create a Web App
az webapp create --resource-group MyResourceGroup --plan MyPlan --name MyWebApp --runtime "dotnet|6.0"
Securing Your App Service with SSL/TLS
Understand how to upload and bind custom SSL certificates to your Azure App Service to secure your web traffic.
Read TutorialMonitoring and Scaling App Services
Discover how to use Azure Monitor and auto-scale rules to keep your application performing optimally and adjust resources based on demand.
Read Tutorial
# Example of a Web.config rule for scaling
<scaleset name="MyWebAppScaleSet">
<rules>
<cpu high="70" low="20" />
</rules>
<default capacity="1" />
</scaleset>
Connecting App Services to Azure SQL Database
A step-by-step guide on how to configure your Azure App Service to securely connect to an Azure SQL Database instance.
Read TutorialBuilding a Serverless API with Azure Functions and App Services
Explore how to integrate Azure Functions for serverless capabilities with your existing Azure App Service applications.
Read Tutorial