I am running a docker-compose in a VM on Azure. My docker-compose exposes 2 items on ports 80 and 443. I exposed both ports 80 and 443 on Azure networking and can confirm that I can reach it from my other PC.
Now, I am trying to add an SSL certificate, after mounting, it still says site not secure from the “Not Secure” indication on the browser.
I mounted the certificate on both ports 80 and 443 using the below (with the port and certhash filled out)
netsh http add sslcert ipport=0.0.0.0:<port> certstorename=Root appid={0100f20b-b700-46a0-b175-d4486ce21df4} certhash=%THUMBPRINT%
I can confirm that the certificate is mounted properly here:
But still I get the not secured on my application and was wondering what I am missing.