App Service Application
Azure App Service is a fully managed platform-as-a-service (PaaS) offering from Microsoft Azure designed for building, deploying, and scaling web applications, RESTful APIs, and mobile backends. With App Service, developers can quickly set up applications in multiple languages (such as .NET, Java, Node.js, Python, and PHP) and benefit from built-in features like load balancing, autoscaling, and integration with Azure DevOps for continuous deployment.
App Service also provides enhanced security with authentication and authorization options, as well as custom domain support and SSL certificates. Itβs ideal for businesses that want to focus on building and improving their apps without managing the underlying infrastructure. Additionally, App Service offers both development and production environments, making it easy to streamline application lifecycle management.
Web App
A web app is an online application accessed through a browser, requiring no installation. It combines front-end and back-end technologies to deliver interactive, accessible, and scalable services on any internet-connected device.
Steps to create an App service
Step 1
Login to Azure protal, on the search bar search for and click app service
Step 2
On the app service page click +create, on the drop down click webb app
Step 3
On the create a webb app page, create a resource group if non is available and give your webb app a name.
Step 4
Choose your publish (code or container), your runtime stack i.e .Net 8 (LTS) and your region.
NB; leave others as default
Step 5
Click review and create, then create after validation is completed
Step 7
On the web app page search bar, search and click Advance tool
Step 9
Another page will popup, on the page click on debug console and click CMD or PowerShell
Step 12
Go to the web app page on azure and copy your web app domain, open it in another tab window
Step 13
Open the advance tools page, on wwwroot, click the pencil icon beside hostingstart.html
Step 14
Note that your web app is empty.
Input your code for the web app
Step 16
Go to your web app domain and refresh
Conclusion
With the following steps we have just create an azure app service, a web app and uploaded into it.
Top comments (0)