创建自签证书步骤
根证书创建
1
2
3openssl genrsa -out ca.key 2048
openssl req -new -x509 -days 36500 -key ca.key -out ca.crt -subj "/C=CN/ST=shanxi/L=taiyuan/O=cn/OU=test/CN=example.com"
#或者 openssl req -new -x509 -days 36500 -key ca.key -out ca.crt 手动输入配置创建证书并使用根证书签发
1
2
3openssl genrsa -out app.key 2048
openssl req -new -key app.key -out app.csr
openssl x509 -req -in app.csr -CA ca.crt -CAkey ca.key -out app.crt -days 3650 -CAcreateserial使用 Openssl 工具查看证书信息
1
2
3openssl x509 -in app.crt -noout -dates
openssl x509 -in app.crt -noout -subject
openssl x509 -in app.crt -noout -textnginx的配置中的证书使用中,ca与crt证书的保存顺序如下:
1
2
3
4
5
6-----BEGIN CERTIFICATE-----
CRT
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
CA
-----END CERTIFICATE-----
https://xhua.eu.org/DevOps/%E5%88%9B%E5%BB%BA%E8%87%AA%E7%AD%BE%E8%AF%81%E4%B9%A6%E6%AD%A5%E9%AA%A4/
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Michael Blog!
评论