Project 1: Basic Web App Deployment on Azure

Introduction In this blog post, I will walk through the steps involved in deploying a basic web app on Azure App Service. The process includes setting up the infrastructure on Azure, creating the web app using Visual Studio Code, and deploying it successfully to Azure. Project Overview This project revolves around creating a basic .NET MVC Web Application and deploying it to Azure App Service. The task covers configuring the necessary Azure resources like the App Service Plan, Web App, and setting up continuous deployment. Step 1: Create Web App in Azure Portal To begin, I set up the infrastructure for the web app using the Azure Portal. 1️⃣ Sign in to the Azure portal at portal.azure.com. 2️⃣ Create a Resource Group: Resource Group: az-rg1 (This helps organize and manage resources) 3️⃣ App Service Details: Name: ftbfchgmcgczapaf.uksouth-01.azurewebsites.net Region: UK South Runtime Stack: .NET 9 (STS) Operating System: Linux App Service Plan: Free F1 (Shared infrastructure) 4️⃣ App Insights: Enable Application Insights: No (Optional for initial setup) 5️⃣ Networking: Enable public access: Yes (Allows the web app to be publicly accessible on the internet) Continuous Deployment: Disabled (I can configure it later if needed) 6️⃣ Finalize: I reviewed all settings and clicked Create to provision the resources.

Mar 10, 2025 - 16:54
 0
Project 1: Basic Web App Deployment on Azure

Introduction

In this blog post, I will walk through the steps involved in deploying a basic web app on Azure App Service. The process includes setting up the infrastructure on Azure, creating the web app using Visual Studio Code, and deploying it successfully to Azure.

Project Overview

This project revolves around creating a basic .NET MVC Web Application and deploying it to Azure App Service. The task covers configuring the necessary Azure resources like the App Service Plan, Web App, and setting up continuous deployment.

Step 1: Create Web App in Azure Portal
To begin, I set up the infrastructure for the web app using the Azure Portal.

1️⃣ Sign in to the Azure portal at portal.azure.com.

2️⃣ Create a Resource Group:
Resource Group: az-rg1 (This helps organize and manage resources)

3️⃣ App Service Details:
Name: ftbfchgmcgczapaf.uksouth-01.azurewebsites.net
Region: UK South
Runtime Stack: .NET 9 (STS)
Operating System: Linux
App Service Plan: Free F1 (Shared infrastructure)

4️⃣ App Insights:
Enable Application Insights: No (Optional for initial setup)

5️⃣ Networking:
Enable public access: Yes (Allows the web app to be publicly accessible on the internet)
Continuous Deployment: Disabled (I can configure it later if needed)

6️⃣ Finalize:
I reviewed all settings and clicked Create to provision the resources.