01-20-2019, 11:35 PM
(01-20-2019, 01:02 PM)Jose Nilton Pace Wrote: Hi Bob. you have to install your certificate on windows, http.sys don't need openssl libs (libeay32 and ssleay32).
1st, convert to PFX: openssl pkcs12 -export -out certificate_out.pfx -inkey private.key -in certificate.crt, and install it.
2nd, binding your certificate on your port:
-Get the certificate thumbprint, Open PowerShell: dir cert:\localmachine\my
-Powershell: add sslcert ipport=0.0.0.0:443 certhash=thumbprint_get_above appid={00000000-0000-0000-0000-000000000000} certstore=my
Obs: https://docs.microsoft.com/en-us/windows...dd-sslcert
Thank you very much! I am at the last step but I cannot find the appid of my application (httpsys application was installed as a service in case this matters). I ran 'Get-WmiObject Win32_Product | select IdentifyingNumber,Name,Version' in powershell but my application name is not listed.

