You have a web app named WebApp1 that uses an Azure App Service plan named Plan1. Plan1 uses the D1 pricing tier and has an instance count of 1.
You need to ensure that all connections to WebApp1 use HTTPS.
What should you do first?
You have a web app named WebApp1 that uses an Azure App Service plan named Plan1. Plan1 uses the D1 pricing tier and has an instance count of 1.
You need to ensure that all connections to WebApp1 use HTTPS.
What should you do first?
To ensure that all connections to WebApp1 use HTTPS, you need to scale up Plan1. The D1 pricing tier does not support HTTPS, and upgrading to at least the Basic tier will enable you to configure HTTPS for your web app.
the only way is up, baby!
https://azure.microsoft.com/en-us/pricing/details/app-service/windows/ The Free and Shared (preview) service plans are base tiers that run on the same Azure VMs as other apps. Some apps may belong to other customers. These tiers are intended to be used only for development and testing purposes. A is the answer
A is correct. Have to scale up plan
This is literally stated in the documentation: .... Later, when you want to create a TLS binding, scale your plan up to Basic tier. ... Ref: https://docs.microsoft.com/en-us/azure/app-service/overview-hosting-plans#what-if-my-app-needs-more-capabilities-or-features
D1 can use Managed Certificates (is currently in Public Preview). The URL will be https://site1234.azurewebsites.net/ and the SSL Cert is wildcard cert - *.azurewebsites.net
Correct