A Web App inside an Azure Resource Group means deploying a web application as an Azure App Service and assigning it to a specific resource group, so it can be logically managed, monitored, and billed along with other related resources.
Talking about Web App is part of Azure App Service (Platform-as-a-Service).
It lets you host web applications, APIs, or backends without managing servers.
Supports languages like .NET, Java, Node.js, Python, PHP
STEP BY STEP IN CREATING WEB APP IN AZURE
STEP 1: Log in to Azure Portal
On the left menu, click Resource groups → Create.
Subscription: Choose your subscription.
Resource group name: e.g., MyResourceGroup.
Region: Pick closest to your users
Step 2 Go to your app service in your azure
Step 3 fill the basic details
Subscription: Choose your Azure subscription.
Resource Group: Select an existing one
Name: Enter a unique name (this will be part of your app’s URL e.g. myapp.azurewebsites.net).
Publish: Choose whether you want to deploy Code or a Docker Container.
Runtime stack: Select your programming language (e.g., .NET, Java, Node.js, Python, PHP).
Region: Choose the datacenter closest to your users.
STEP 4 GO TO THE SEARCH BAR NOT SEARCH MENU AND SEARCH FOR ADVANCE TOOLS. After a few minutes, your Web App will be deployed.
You can go to Resource - Default URL to test.
click on DEBUG CONSOLE ON THE DRP DOWN CLICK ON CMD
STEP 5 YOU GO TO SITE
STEP 6 GO TO WWWROOT
STEP 7 CLICK ON PENCIL ICON
STEP 8 PASTE THE CODE AND SAVE
STEP 9 GO BACK TO THE WEP APP OVERVIEW AND CLICK ON DEFAULT DOMAIN TO CONFIRM YOUR CODE
STEP 10 BOOM MY GAME CODE WAS HOSTED
https://kolawoleapp-f3e0hxgmfnhqfpfp.canadacentral-01.azurewebsites.net/
Top comments (0)