只需按照这里的简单说明(Debian 7 Wheezy with Nginx 1.8.x) https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu- 14-04
./letsencrypt-auto certonly -a webroot --webroot-path=/var/www/html -d sub.domain.com
我看到它创建了文件夹.well_known
(在 /var/www/html 下),但它没有创建acme-challenge
文件夹(以及它下面的实际文件)所以在 http 回发时,我得到The client lacks sufficient authorization
是因为文件不存在
我将如何尝试追查为什么它不会创建
/var/www/html/.well_known/acme-challenge/file
文件?
谢谢,克里斯