#!/bin/bash
# certbot renew --dry-run(查看续订状态) certbot renew(续订)
# 撤销证书certbot revoke --cert-path /etc/letsencrypt/archive/域名/cert1.pem
# 删除证书certbot delete
# 查看证书状态certbot certificates(域名,到期日,证书路径,私钥路径四条信息)
# 00 03 25 * * /usr/bin/certbot renew --quiet 进行定时(参考)
#-------------------nginx的配置-----------------
# server的节点中
# ssl_certificate /etc/letsencrypt/live/域名/fullchain.pem
# ssl_certificate_key /etc/letsencrypt/live/域名/privkey.pem
# 然后重启nginx(nginx -s reload)
# 开启443端口并配置listen 443 ssl;
#-------------------nginx的配置-----------------
EMAIL="1024335892@qq.com"
rpm -q epel-release &>/dev/null
if [ $? -ne 0 ]; then
yum install epel-release -y
fi
rpm -q certbot &>/dev/null
if [ $? -ne 0 ]; then
yum install certbo
certbot自动签名生成https-(shell5)
最新推荐文章于 2024-09-23 10:24:50 发布
本文介绍了如何利用certbot工具通过shell脚本自动化完成HTTPS证书的申请和安装,确保网站安全地使用HTTPS协议。
摘要由CSDN通过智能技术生成