最近 Let’s Encrypt的证书要过期了,去官网找一下文档看看如何续期,发现官网和以前不一样了,现在推荐一款Certbot的客户端,试用了下,感觉和以前的脚本没啥区别啊,安装还特别麻烦。
https://certbot.eff.org/#debianjessie-apache
往apt-get添加backports源
| 
					 1  | 
						etc/apt/sources.list  | 
					
| 
					 1  | 
						deb http://ftp.debian.org/debian jessie-backports main  | 
					
Run apt-get update
https://backports.debian.org/Instructions/
安装Certbot
| 
					 1  | 
						apt-get install python-certbot-apache -t jessie-backports  | 
					
如果是Debian 9
| 
					 1  | 
						apt-get install python-certbot-apache  | 
					
更新Cert
| 
					 1  | 
						certbot --apache certonly -d blog.minirplus.com  | 
					
There are no comments yet