1、准备pfx证书
2、创建存放证书的目录
3、pfx 导出 pem 格式
]# openssl pkcs12 -in 20230503.pfx -nodes -out /etc/nginx/ssl/20230503.pem
Enter Import Password: # 输入证书的密码
MAC verified OK
4、pem 导出 key 格式
cd /etc/nginx/ssl && openssl rsa -in 20230503.pem -out 20230503.key
5、pem 导出 crt 格式
cd /etc/nginx/ssl && openssl x509 -in 20230503.pem -out 20230503.crt
6、查看证书目录
]# ll /etc/nginx/ssl
-rw-r--r-- 1 root root 1204 May 4 09:58 20230503.crt
-rw-r--r-- 1 root root 1675 May 4 09:57 20230503.key
-rw-r--r-- 1 root root 3261 May 4 09:54 20230503.pem