skip to Main Content

I’m using an Azure App Service (multi-docker) setup to run a simple web app: NGINX + DJANGO.

Is there a feature/setting in App Service to enable automatic SSL termination? The domain is a default one: <subdomain>.azurewebsites.net

I would want to avoid Nginx configuration changes and performing the TSL offloading there, also it would be good to keep the domain, I don’t need a custom one.

2

Answers


  1. No, if you want such a thing you should place Azure Front Door/Azure Application Gateway in front of the App Services.

    Login or Signup to reply.
  2. In App Service, TLS termination happens at the frontend load balancer. There are no settings that you can change.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search