知乎专栏 |
dnf install -y epel-release dnf install -y certbot python3-certbot-nginx
如果是本地安装 nginx 请使用下面命令
certbot --nginx -d example.com -d www.example.com
如果是 docker 安装 nginx 使用下面命令,只生成证书,然后使用 -v 参数将证书挂在到 docker 容器内即可
mkdir -p /opt/nginx/cert docker cp nginx:/etc/nginx/conf.d /opt/nginx/conf.d certbot certonly --nginx --webroot -w /opt/nginx/html -d netkiller.cn -m netkiller@msn.com --agree-tos