Por que o certbot (letsencrypt) recebe um 403 proibido?

1

Tentando criar certificados para meu domínio em um servidor da Web nginx. Quando o certbot é executado, ele me causa um erro 403 não autorizado, pois não consegue ver o arquivo no domínio por algum motivo, mas, se eu replicar o arquivo, poderei visualizá-lo no meu domínio.

Comando sendo executado

certbot certonly --webroot -w /var/www/html/example.com/website/ -d www.example.com -d example.com 

O erro recebido

Saving debug log to /var/log/letsencrypt/letsencrypt.log
Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for www.example.com
http-01 challenge for example.com
Using the webroot path /var/www/html/example/website for all unmatched domains.
Waiting for verification...
Cleaning up challenges
Failed authorization procedure. www.example.com (http-01): urn:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from http://www.example.com/.well-known/acme-challenge/lBNrwYPRz_0iFkXPGG2jfixRecA7VMMDOmYst_qzXCI: "<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>"

Eu entendo que o NGINX precisa de blocos de localização para algumas coisas, mas se eu recriar esses arquivos eu posso acessá-los. (Ele faz o download do arquivo automaticamente?)

www.example.com/.well-known/acme-challenge/lBNrwYPRz_0iFkXPGG2jfixRecA7VMMDOmYst_qzXCI

Aqui está minha configuração básica do NGINX.

server {

    listen 80;
    listen [::]:80;

    server_name www.example.com example.com 167.0.0.0;
    root /var/www/html/example/website;
    index index.html index.php index;

    location /forums {
        root /var/www/html/example;
    }


}
    
por Rhys 04.12.2017 / 02:45

0 respostas