Breaking News

EDITION 3 - How to create a Web app in Azure

 How to create a Web app in Azure

Azure web apps is used as a PAAS model.

Hosting a website in Azure

Following steps need to be followed for deploying a website in PAAS model

This contain 

  1. A free domain which will end with .azurewebsites.net 
  2. Choose correct pricing tier for your website
  3. Configure the right hardware components.
  4. Configure an SSL certificate
  5. Buy a custom website from ISP, for example Go Daddy
GoDaddy has four costing plans: the $10/month Basic plan is cheapest, but you only unlock SEO tools in the $15/month Standard plan. The $20/month Premium plan includes unlimited social posts like facebook and twitter and lets you accept online appointments. The $25/month Ecommerce plan comes with sales features which is very power full.
  1. Then integrate the same in Azure

Things to consider before deployment 

1. Resource group 

resource group is a container that contain related resources for an Azure solution. The resource group can include all the resources for the solution, or only those resources that you need to manage as a group

Setting up resource group location is important as this is the region where resources are located. If you select wrong then this will create a latency. You also can select a subscription for the same.

This resource group also show some deployments. 

Container which is used to alight all resources in one track which is also called RBAC.

Role-based access control (RBAC) is a method of restricting network access based on the roles of individual users within an organisation. RBAC lets employees have access rights only to the information they need to do their jobs and prevents them from accessing information that doesn't bother to them.


Next step is to create a web app , you can fill in the information as below



Select resource group that we created earlier

You can create a new plan,which is pricing tiers, pricing tiers are based on memory ,cores and cost per month

Some plan will give flexibility for dynamically expand the number of servers in load balancer.

Also plans will give access to multiple environments like development, UAT and production.


No comments