https
文章平均质量分 52
https
crayon-shin-chan
这个作者很懒,什么都没留下…
展开
-
ubuntu上使用certbot安装ssl证书到nginx
文档:Certbot Instructions | Certbot1.简介Certbot 是一种免费的开源软件工具用于在手动管理的网站上自动使用Let's Encrypt证书以启用 HTTPS。Certbot 每 60 天更新一次证书。这里选择普通的安装,而不是通配符模式。2.安装snapcertbot作为snap分发包安装,很多linux发行版内置了snap,如ubuntusudo snap install core; sudo snap refresh原创 2021-12-09 22:01:25 · 2248 阅读 · 0 评论 -
go语言生成ssl证书
1.简介使用https协议时一般需要两个文件,cert.pem和key.pemcert.pem文件是SSL证书,而key.pem是私钥可以使用Go标准库中的crypto包群来生成证书与私钥2.实现package mainimport ( "crypto/rand" "crypto/rsa" "crypto/x509" "crypto/x509/pkix" "encoding/pem" "math/big" "net" "os" "time")..原创 2021-08-07 23:50:46 · 1354 阅读 · 0 评论