Échec d'activation HTTPS

Bonjour j'essaie d'installer le certificat mais j'arrive pas, pouvez vous m'aider s'il vous plait :

Certbot failed to authenticate some domains (authenticator: apache). The Certificate Aut hority reported these problems:
Domain: www.artsgallery.com
Type: unauthorized
Detail: : Invalid response from http://www.artsgallery.com/.well-known/ac me-challenge/ygvQuCTBa7KCb9uu6K4u8q1hY6rD1c18h9057AWYHgs: "\n\n\n<meta http-equiv="Conte"

Hint: The Certificate Authority failed to verify the temporary Apache configuration chan ges made by Certbot. Ensure that the listed domains point to this Apache server and that it is accessible from the internet.

Some challenges have failed.
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfi le /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.

Hi @Khaoulache04, and welcome to the LE community forum :slight_smile:


Veuillez remplir les champs ci-dessous pour que nous puissions vous aider. Remarque : vous devez fournir votre nom de domaine pour obtenir de l’aide. Les noms de domaine des certificats émis sont tous rendus publics dans les journaux de Transparence de Certificat (par exemple, https://crt.sh/?q=example.com). Par conséquent, le fait de ne pas indiquer votre nom de domaine ici n’aide pas à le garder secret, mais rend plus difficile pour nous le fait de vous aider.

Je peux lire des réponses en Anglais :

Mon nom de domaine est :

J’ai exécuté cette commande :

Elle a produit cette sortie :

Mon serveur Web est (inclure la version) :

Le système d’exploitation sur lequel mon serveur Web s’exécute est (version incluse) :

Mon hébergeur, le cas échéant, est :

Je peux me connecter à un shell root sur ma machine (oui ou non, ou je ne sais pas) :

J’utilise un panneau de configuration pour gérer mon site (non, ou fournit le nom et la version du panneau de configuration) :

2 Likes

You are using the Apache authenticator but some nginx system is interfering with the requests. This may be a firewall or some other network device that runs nginx.

See more details below. Some nginx system is responding with a 200 OK to the HTTP Challenge but with a page saying "This site requires JavaScript ...". Your system instead should return the contents of the challenge token created by Certbot in your Apache server.

(Note the Server: nginx)
curl -i  http://www.artsgallery.com/.well-known/acme-challenge/ygvQuCTBa7KCb9uu6K4u8q1hY6rD1c18h9057AWYHgs
HTTP/1.1 200 OK
Server: nginx
X-DIS-Request-ID: a464ac730a301d368d5d46ce629f7f12
P3P: CP="NON DSP COR ADMa OUR IND UNI COM NAV INT"

(part of data html response)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
(...parts omitted...)
<body>
<noscript>This site requires JavaScript and Cookies to be enabled. Please change your browser settings or upgrade your browser.</noscript>
</body>
</html>
3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.