01-20-2019, 01:02 PM
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
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

