0

I created a new Web App on D1 App Service Plan. I just published the application (.Net Core 2.2 app) from Visual Studio. I see that I can access my app with HTTPS and the browser tells me that this is a secured connection (with a padlock). How did that happen? When I go to TLS/SSL section of my Web App settings, there are no certificates added.

Loreno
  • 668
  • 8
  • 26

1 Answers1

2

Even without the custom domain, you have SSL enabled for your site. By default, Azure secures the *.azurewebsites.net wildcard domain with a single SSL certificate, so your clients can already access your app with https.

AjayKumar
  • 2,812
  • 1
  • 9
  • 28
  • OK, so ALL applications under *.azurewebsites.net share the same certificate by default. However, if I added my own certificate, I would use this one, right? – Loreno Jul 05 '19 at 11:03
  • 1
    Yes, you can upload your own certificate and configure to use that: https://learn.microsoft.com/azure/app-service/app-service-web-tutorial-custom-ssl – AjayKumar Jul 06 '19 at 19:14