SSL 免費證書

fieldtianye發表於2024-05-07

SSL 免費證書

參考:

檢視證書時間的方式

https://blog.csdn.net/qq_38978882/article/details/133773102

用 Let's encrpyt 生成 SSL 證書

更新:為 NGINX 配置免費的 Let’s Encrypt SSL/TLS 證書

https://zhuanlan.zhihu.com/p/562040010

使用let's encrypt申請免費的SSL證書

https://developer.aliyun.com/article/1246358

Let's Encrypt 安裝配置教程,免費的 SSL 證書

https://zhuanlan.zhihu.com/p/196638669

你的網站HTTPS了嗎 | Let’s Encrypt

https://www.manongjc.com/detail/51-xziwpgoulyigshr.html

Let‘s Encrypt免費安全證書的步驟及使用-基於centos9, 包括工具certbot安裝及使用,獲取apache、nginx、iis等伺服器安全證書

https://blog.csdn.net/zrc_xiaoguo/article/details/134847692

先可以檢視一下現在證書時間:

可以直接用 curl 檢視,輸出會包含證書資訊:

curl -k https://domain.com -iv

1、openssl 檢視

openssl pkcs12 -in name.p12 -out name.crt
openssl x509 -in name.crt -noout -text

2、方式2

將證書從.p12檔案解壓縮到.pem檔案,使用以下命令:

openssl pkcs12 -in name.p12 -out name.pem -nodes

使用以下命令從.pem檔案中的證書中提取到期日期:

cat name.pem | openssl x509 -noout -enddate

3、命令檢視時間

openssl pkcs12 -in name-prd.p12 -nodes | openssl x509 -noout -enddate

用 Let's encrpyt 生成 SSL 證書:

相關文章