Skip to navigation
The function of the .well-known/acme-challenge folder
31.10.23
It's the connection point between the letsencrypt server and the local acme.sh or certbot app. in case of acme.sh the -w parameter tells acme where to put its token, so letsencrypt can pick it via the web server ```config acme.sh --issue -d example.com -d www.example.com -d cp.example.com -w /home/wwwroot/example.com ``` HTTP-01 challenge This is the most common challenge type today. Let’s Encrypt gives a token to your ACME client, and your ACME client puts a file on your web server at http://
/.well-known/acme-challenge/
. That file contains the token, plus a thumbprint of your account key. Once your ACME client tells Let’s Encrypt that the file is ready, Let’s Encrypt tries retrieving it (potentially multiple times from multiple vantage points). If our validation checks get the right responses from your web server, the validation is considered successful and you can go on to issue your certificate. If the validation checks fail, you’ll have to try again with a new certificate.
https://letsencrypt.org/docs/challenge-types/
Reply
Anonymous
Information Epoch 1742043260
Live free or die.
Home
Notebook
Contact us