An Azure service that provides customers with a serverless container experience.
Hi @IT RIMSA
When you are setting up SSL between Application Gateway and Backend, if you are using a self-signed certificate or a certificate signed by a custom root CA on the backend, then you need to upload self-signed or the Custom root CA of the backend certificate on the Application Gateway. For more information you can refer to this link.
applicationGatewayName="<gateway-name>"
resourceGroup="<resource-group>"
az network application-gateway root-cert create \
--gateway-name $applicationGatewayName \
--resource-group $resourceGroup \
--name backend-tls \
--cert-file backend.crt
Please "Accept as Answer" if it helped, so that it can help others in the community looking for help on similar topics.