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
- A free domain which will end with .azurewebsites.net
- Choose correct pricing tier for your website
- Configure the right hardware components.
- Configure an SSL certificate
- Buy a custom website from ISP, for example Go Daddy
- Then integrate the same in Azure
Things to consider before deployment
1. Resource group
A 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
Post a Comment