Azure https with pfx file
问题 I am trying to create an https endpoint for my azure service. I was given an p7b file that I converted into a cer file. From the cer I was able to convert with a few lines of c# to a pfx . var cert = new X509Certificate2(@"certpath", " var bytes = cert.Export(X509ContentType.Pfx, "password"); File.WriteAllBytes(@"certpath\cert.pfx", bytes); Now when I upload the cert to azure everything seems ok, I copy the thumbprint and try to upgrade with the new thumbprint as part of the end point and I