域名管理
acme.sh
Bash
git clone https://gitee.com/neilpang/acme.sh.git
cd acme.sh
#把 acme.sh 安装到你的 home 目录下:
./acme.sh --install -m 1264218057@qq.com
#切换CA机构到letsencrypt
./acme.sh --set-default-ca --server letsencrypt
#生成相应的解析记录显示出来, 你只需要在你的域名管理面板中添加这条 txt 记录即可.
./acme.sh --issue --dns -d local-storage.yuxuan.xyz --yes-I-know-dns-manual-mode-enough-go-ahead-please
#这里会在对应的家目录下面生成一个.acme.sh的目录,目录下存在一个域名为名字的目录
#分别要在nginx配置fullchain.car
#域名.key
#ca.cer
#获取证书:
./acme.sh --renew -d local-storage.yuxuan.xyz --yes-I-know-dns-manual-mode-enough-go-ahead-please
./acme.sh --renew -d local-storage.yuxuan.xyz --yes-I-know-dns-manual-mode-enough-go-ahead-please
./acme.sh --renew -d local-svr2.yuxuan.xyz --yes-I-know-dns-manual-mode-enough-go-ahead-please
#更新后自动重读nginx
./acme.sh --install-cert -d local-chat.yuxuan.xyz --reloadcmd "docker exec nginx nginx -s reload"
./acme.sh --cron --home "/home/fb/.acme.sh"
Certbot
目前certbot管理证书主要有两种方法:
使用Nginx插件:
- 不需要停止Nginx:使用certbot的nginx插件,无需停止或者启动nginx。cerbot会自动为nginx配置添加临时的验证规则,并在验证完成后清理这些规则
- 自动配置SSl:除了自动验证,nginx插件还会尝试自动为域名配置ssl,包括证书和定期自动续期。
Bash
#ubuntu20.04版本以上
#安装snapd
apt update
apt install certbot python3-certbot-nginx
#使用命令获取证书
#此命令获取证书并让Certbot自动编辑nginx配置
certbot --nginx
#这个命令会自动读取nginx中的配置文件用到的域名,并申请对应的证书
#需要注意,此命令会修改证书位置。使用此命令需要确保nginx正常启动
#此命令只获取证书,手动更改nginx配置
certbot certonly --nginxbuch #依托于nginx做验证,需要-d指定域名
#测试自动续费证书,正常续费不需要--dry-run
certbot renew
certbot --nginx --nginx-server-root 配置文件位置 --nginx-ctl 命令位置
旧:reception.sexpired.xyz 新:chat.signalchat.xyz
旧:storage.sexpired.xyz 新: storage.signalchat.xyz
#另外一个方法
#类似standalone,自启一个web应用来申请证书并验证,需要有对应的目录修改权限
certbot certonly --webroot -w /var/www/certbot -d hub.rlbzg.xyz -d manager.rlbzg.xyz -d----
COMPOSE文件样例
nginx:
container_name: nginx
image: nginx:1.24
restart: always
environment:
- TZ=Asia/Shanghai
volumes
- /home/fb/fb-docker/nginx/certbot/conf:/etc/lstsencrypt #certbot管理证书
- /home/fb/fb-docker/nginx/certbot/www:/var/www/certbot#certboth缓存位置
ports:
- "80:80"
- "443:443"
Dockerfile需要修改:
apt-get -y install certbot python3-certbot-nginx
#crontab 续期
0 0 1 */2 * docker exec -it nginx certbot renew --force-renewal --quiet
&& docker exec nginx nginx -s reload
使用--standalone模式
- 需要停止Nginx:在--standalone模式下,因为certbot将启动一个临时的web服务器来处理acme挑战验证,所以需要保证80及443未被占用
- 手动配置ssl:使用--standalone模式成功获取证书后,还需要手动编辑nginx配置文件
Bash
/opt/nginx/sbin/nginx -s stop# 必须先关掉nginx
#验证多个就 -d 参数来实现
certbot certonly --standalone --email 邮箱 -d 域名 -d 域名
/opt/nginx/sbin/nginx