Design and Implement Azure App Service Apps (15-20%) Flashcards
4 Items needed to create an App Service Plan?
- Region (East US, SE Asia..)
- Instance Size (small, medium, large)
- Scale Count (1 - 20 instances or 50 for premium)
- SKU (Free,Shared,Basic,Standard,Premium)
URL of Web App?
.azurewebsites.net
When can you move apps between plans?
When the plans are in the same resource group and geographical region.
How can you move an app to a service plan in a different region?
Use the Clone App function
True/False: Multiple Apps can share an App Service Plan?
True
What tier/sku is Per app scaling available at?
Premium
PS: Create an App Service Plan?
New-AzureRmAppServicePlan
PS: Update an Existing App Service Plan
Set-AzureRmAppServicePlan
PS: Update an Existing Web App
Set-AzureRmWebApp
What are WebJobs?
Azure WebJobs provide an easy way to run scripts or programs as background processes on App Service Web Apps.
What type of file extensions do webjobs support?
cmd, bat, exe (.NET), ps1, sh, php, py, js and jar
What 2 DNS options to map a custom DNS name to an App Service?
- CNAME record (website url)
2. A record (IP Address) and TXT record
Which tier does NOT allow for using a custom domain name for an App Service?
Free tier. (Custom domains only available in paid tiers)
CLI: Configure Custom DNS name to an App Service App?
az appservice web config hostname add \
- -webapp \
- -resource-group \
- -name
PS: Configure Custom DNS name to an App Service App?
Set-AzureRmWebApp `
- Name `
- ResourceGroupName `
- HostNames @(“”,”.azurewebsites.net”)
4 Requirements of the SSL certificate in App Service?
- Signed by a trusted CA
- Exported as a password protected PFX file
- Contains private key at least 2048 bits long
- Contains all intermediate certificates in the certificate chain
Which tiers can use custom SSL certificates?
Basic, Standard, Premium
What are the 2 types of Certificate Bindings for App Services?
- SNI-Based SSL - allows multiple SSL certificates to
secure multiple domains on the same IP address - IP-based SSL - allows only one SSL certificate to
secure a dedicated public IP address.