Service Area: Compute / App Services

Lab Objective:

Learn how to deploy a Web App using Azure App Service and manage basic configurations.


Example Scenario:

Deploy a Web App named mywebapp-demo using Azure App Service in the East US region and display a custom HTML page.


Lab Steps:

Step 1: Login to Azure Portal


Step 2: Create an App Service Plan

  • Search → App Services → Click CreateWeb App

Basics Tab:

FieldValue
SubscriptionYour Subscription
Resource GroupCreate new → AppLab-RG
Namemywebapp-demo (Unique Name)
PublishCode
Runtime Stack.NET / Node.js / PHP / Python (Choose any)
Operating SystemWindows / Linux
RegionEast US
App Service PlanCreate new → AppLab-Plan
SKU & SizeFree (F1) or Basic Tier

Step 3: Review + Create

  • Review the configuration
  • Click Create

Step 4: Access the Web App

Open in browser → App Service default page appears.


Step 5: Deploy Custom HTML Page (Optional)

  • In App Service → Left Menu → Advanced Tools (Kudu) → Click Go
  • Click Debug ConsoleCMD
  • Navigate to: site/wwwroot
  • Create a new file: index.html
  • Add content:
htmlCopyEdit<h1>Welcome to Azure App Service - Demo!</h1>

Refresh the web app URL → Custom page should appear.


Step 6: Configure App Settings (Optional)

  • In App Service → Settings → Configuration
  • Add Application Settings like Environment Variables if needed.

Step 7: Monitor the Web App

  • In App Service → Monitoring Section
    • View Metrics
    • View Logs
    • Enable Application Insights (Optional)

Step 8: Clean Up Resources

  • Delete the resource group to avoid charges:
    Resource Groups → AppLab-RG → Delete.

Outcome:

Successfully deployed a Web App using Azure App Service, customized its content, and explored management features.

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *

Quote of the week

“Learning gives creativity, creativity leads to thinking, thinking provides knowledge, and knowledge makes you great.”

~ Dr. A.P.J. Abdul Kalam

© 2025 uprunning.in by Jerald Felix. All rights reserved.