I am trying to renew an SSL certificate for the domain
www.macucotech.com
using the HTTP Challenge. However, the process fails with the following error message:
Additionally, when testing directly with curl
, I receive a 404 error, indicating that the validation file is not accessible.
Environment
- Server: Windows Server
- Web Server: IIS (Internet Information Services)
- Path configured in IIS:
C:\Users\Administrator\Desktop\API
- Directory created for the challenge:
C:\Users\Administrator\Desktop\API\.well-known\acme-challenge
Test with CURL
Command:
curl -v http://www.macucotech.com/.well-known/acme-challenge/Test
Response:
mathematica
Copiar código
HTTP/1.1 404 Not Found
Actions already taken
- Created the
.well-known/acme-challenge
directory in the path configured in IIS. - Placed a test file (
Test.txt
) inside the mentioned folder. - Tried to access the file directly via browser and
curl
, but I still get a 404 Not Found error. - Confirmed that port 80 is open and being used by the IIS process.
- Verified that IIS is configured to serve the site associated with the domain
www.macucotech.com
.
Question
Why is the file .well-known/acme-challenge/kIvnoWyWGjvcPFZC3ZQLvwT-cYW39ZEQjxjHAOuT2a0
not being correctly served by IIS, even after configuring the directory in the physical site path? Is there any additional configuration required in IIS or for the domain?