So client wanted PaaS without the cost of App Service Environment (ASE).
So naturally Web App + ASP + VNET integration + private endpoint comes to mind. Client also wanted the friendly url added i.e 'custom domain'
But how to add short url without exposing the web app to public? Cause you cannot add your own domain until External custom domain id is not added in you external gateway DNS.
Answer:
-------------
Simple
add the TXT record in your external gateway.
Add record to Route the new url to the private IP address.
Then go to app in Azure.
Add the custom domain and verify .
This time you will be able to get past domain verification step.
Now remove the txt record from gateway.
Apply binding for 'sni ssl' using free CA cert .
Alternatively you can get free digicert as well from azure webapp 'TLS Setting' config.
Good luck 😃
Comments
Post a Comment