Reputation: 7706
I'm configuring Azure Application Gateway to serve internally on Azure Vnet private IP, I've assigned private DNS name like my-gateway.private, now I want to configure SSL to server https requests internally. Is it possible to generate certificate for private domain in Azure? Considering self signed one will not work good, because I can't turn off root certificate / trusted CA verification on client side.
Upvotes: 1
Views: 1155
Reputation: 76
Firstly, you have not mentioned whether what is the type of back-end. Is it a server pool or app-service ? As per my understanding you are having VMs to as backend servers. You would have more options with Azure App services compared to Azure VMs.
Further, application gateway does not provide any capability to create a new certificate or send a certificate request to a certification authority.
Application gateway supports the following types of certificates:
For more information : https://learn.microsoft.com/en-us/azure/application-gateway/ssl-overview
Upvotes: 1