如果在建立虚拟主机时,不是默认的目录(默认 /data/wwwroot/xxx.com),
如 /data/wwwroot/xxx.com/public,生成的计划任务是
/usr/local/bin/certbot-auto certonly -a webroot --agree-tos --renew-by-default --webroot-path=/data/wwwroot/xxx.com -d xxx.com
正确的应该是
/usr/local/bin/certbot-auto certonly -a webroot --agree-tos --renew-by-default --webroot-path=/data/wwwroot/xxx.com/public -d xxx.com
如 /data/wwwroot/xxx.com/public,生成的计划任务是
/usr/local/bin/certbot-auto certonly -a webroot --agree-tos --renew-by-default --webroot-path=/data/wwwroot/xxx.com -d xxx.com
正确的应该是
/usr/local/bin/certbot-auto certonly -a webroot --agree-tos --renew-by-default --webroot-path=/data/wwwroot/xxx.com/public -d xxx.com