My domain is: www.uat.connectedsafetynet.co.uk
I ran this command: certbot certonly --standalone
it asked for the domain name and I enter: www.uat.connectedsafetynet.co.uk
It produced this output:
`C:\Users\pranav\Downloads\praveen>certbot certonly --standalone
Saving debug log to C:\Certbot\log\letsencrypt.log
Plugins selected: Authenticator standalone, Installer None
Please enter in your domain name(s) (comma and/or space separated) (Enter 'c'
to cancel): www.uat.connectedsafetynet.co.uk
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for www.uat.connectedsafetynet.co.uk
Waiting for verification...
e[31mChallenge failed for domain www.uat.connectedsafetynet.co.uke[0m
http-01 challenge for www.uat.connectedsafetynet.co.uk
Cleaning up challenges
e[31mSome challenges have failed.e[0m
e[1m
IMPORTANT NOTES:
e[0m - The following errors were reported by the server:
Domain: www.uat.connectedsafetynet.co.uk
Type: unauthorized
Detail: Invalid response from
http://www.uat.connectedsafetynet.co.uk/.well-known/acme-challenge/3pxGQxnB1Edm7X5-sJC66CrTgM2D7Hj_3zScsbT2-I4
[51.140.47.95]: "<!DOCTYPE html>\r\n<html>\r\n <head>\r\n
<title>CSN</title>\r\n <meta charset=\"utf-8\" />\r\n
<meta\r\n name=\"viewport\"\r\n "
To fix these errors, please make sure that your domain name was
entered correctly and the DNS A/AAAA record(s) for that domain
contain(s) the right IP address.
`
My web server is (include version): Nginx
The operating system my web server runs on is (include version): Windows 10
My hosting provider, if applicable, is: Azure
I can login to a root shell on my machine (yes or no, or I don’t know): yes
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you’re using Certbot): certbot 1.6.0
My Nginx config file looks like this:
`
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name uat.connectedsafetynet.co.uk www.uat.connectedsafetynet.co.uk;
location / {
proxy_pass "http://localhost:3000";
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}}
}