1. 安装openssl(Windows)

不推荐官网安装方式,直接下载其他人做的便捷版安装包
http://slproweb.com/products/Win32OpenSSL.html使用openssl将pfx格式证书转换成key和crt_nginx
下载后一直下一步就行了

  1. 配置环境变量

2. pfx格式证书转换成key和crt

步骤1:先将pfx转换成.pem文件

openssl pkcs12 -in 你的文件名.pfx -nodes -out 转换后的文件名.pem

比如:openssl pkcs12 -in CertificateAndKey.pfx -nodes -out test.pem

步骤2: 将pem文件导出为key

openssl rsa -in test.pem -out test.key

步骤2: 将pem文件导出为crt

openssl x509 -in test.pem -out test.crt

之后你就可以使用nginx来配置https了
ssl on;
#证书文件名称
ssl_certificate test.crt;
#私钥文件名称
ssl_certificate_key test.key;