Thank you for the heads up! Then it could have very well been something else. Having seen the wasn't able to bind part, I ignored where it complains about 404. I will have another take on revisiting my Nginx config first thing tomorrow then.
certbot -v certonly
Storing nonce: NONCE
Performing the following challenges:
http-01 challenge for example.com
Successfully bound to :8080 using IPv6
Certbot wasn't able to bind to :8080 using IPv4, this is often expected due to the dual stack nature of IPv6 socket implementations.
Waiting for verification...
JWS payload:
b'{\n "resource": "challenge",\n "type": "http-01"\n}'
Sending POST request to https://acme-staging-v02.api.letsencrypt.org/acme/chall-v3/123456789/Sf45ERgs:
{
"protected": "hash-protected",
"signature": "hash-signature",
"payload": "hash-payload"
}
https://acme-staging-v02.api.letsencrypt.org:443 "POST /acme/chall-v3/123456789/Sf45ERgs HTTP/1.1" 200 193
Received response:
HTTP 200
Server: nginx
Date: Wed, 30 Nov 2022 21:00:00 GMT
Content-Type: application/json
Content-Length: 193
Connection: keep-alive
Boulder-Requester: 78073534
Cache-Control: public, max-age=0, no-cache
Link: <https://acme-staging-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-staging-v02.api.letsencrypt.org/acme/authz-v3/123456789>;rel="up"
Location: https://acme-staging-v02.api.letsencrypt.org/acme/chall-v3/123456789/Sf45ERgs
Replay-Nonce: another-nonce
X-Frame-Options: DENY
Strict-Transport-Security: max-age=604800
{
"type": "http-01",
"status": "pending",
"url": "https://acme-staging-v02.api.letsencrypt.org/acme/chall-v3/123456789/Sf45ERgs",
"token": "token"
}
Storing nonce: another-nonce
JWS payload:
b''
Sending POST request to https://acme-staging-v02.api.letsencrypt.org/acme/authz-v3/123456789:
{
"protected": "hash-protected",
"signature": "hash-signature",
"payload": ""
}
https://acme-staging-v02.api.letsencrypt.org:443 "POST /acme/authz-v3/123456789 HTTP/1.1" 200 1073
Received response:
HTTP 200
Server: nginx
Date: Wed, 30 Nov 2022 21:00:00 GMT
Content-Type: application/json
Content-Length: 1073
Connection: keep-alive
Boulder-Requester: 78073534
Cache-Control: public, max-age=0, no-cache
Link: <https://acme-staging-v02.api.letsencrypt.org/directory>;rel="index"
Replay-Nonce: yet-another-nonce
X-Frame-Options: DENY
Strict-Transport-Security: max-age=604800
{
"identifier": {
"type": "dns",
"value": "example.com"
},
"status": "invalid",
"expires": "2022-12-07T21:00:00Z",
"challenges": [
{
"type": "http-01",
"status": "invalid",
"error": {
"type": "urn:ietf:params:acme:error:connection",
"detail": "1.2.3.4: Fetching http://example.com/.well-known/acme-challenge/token: Error getting validation data",
"status": 400
},
"url": "https://acme-staging-v02.api.letsencrypt.org/acme/chall-v3/123456789/Sf45ERgs",
"token": "token",
"validationRecord": [
{
"url": "http://example.com/.well-known/acme-challenge/token",
"hostname": "example.com",
"port": "80",
"addressesResolved": [
"1.2.3.4"
],
"addressUsed": "1.2.3.4"
}
],
"validated": "2022-11-30T21:00:00Z"
}
]
}
Storing nonce: yet-another-nonce
Reporting to user: The following errors were reported by the server:
Domain: example.com
Type: connection
Detail: 1.2.3.4: Fetching http://example.com/.well-known/acme-challenge/token: Error getting validation data
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. Additionally, please check that your computer has a publicly routable IP address and that no firewalls are preventing the server from communicating with the client. If you're using the webroot plugin, you should also verify that you are serving files from the webroot path you provided.
Encountered exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 82, in handle_authorizations
self._respond(aauthzrs, resp, best_effort)
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 168, in _respond
self._poll_challenges(aauthzrs, chall_update, best_effort)
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 239, in _poll_challenges
raise errors.FailedChallenges(all_failed_achalls)
certbot.errors.FailedChallenges: Failed authorization procedure. example.com (http-01): urn:ietf:params:acme:error:connection :: The server could not connect to the client to verify the domain :: 1.2.3.4: Fetching http://example.com/.well-known/acme-challenge/token: Error getting validation data
Calling registered functions
Cleaning up challenges
Stopping server at :::8080...
Exiting abnormally:
Traceback (most recent call last):
File "/usr/bin/certbot", line 11, in <module>
load_entry_point('certbot==0.31.0', 'console_scripts', 'certbot')()
File "/usr/lib/python3/dist-packages/certbot/main.py", line 1365, in main
return config.func(config, plugins)
File "/usr/lib/python3/dist-packages/certbot/main.py", line 1250, in certonly
lineage = _get_and_save_cert(le_client, config, domains, certname, lineage)
File "/usr/lib/python3/dist-packages/certbot/main.py", line 121, in _get_and_save_cert
lineage = le_client.obtain_and_enroll_certificate(domains, certname)
File "/usr/lib/python3/dist-packages/certbot/client.py", line 410, in obtain_and_enroll_certificate
cert, chain, key, _ = self.obtain_certificate(domains)
File "/usr/lib/python3/dist-packages/certbot/client.py", line 353, in obtain_certificate
orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names)
File "/usr/lib/python3/dist-packages/certbot/client.py", line 389, in _get_order_and_authorizations
authzr = self.auth_handler.handle_authorizations(orderr, best_effort)
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 82, in handle_authorizations
self._respond(aauthzrs, resp, best_effort)
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 168, in _respond
self._poll_challenges(aauthzrs, chall_update, best_effort)
File "/usr/lib/python3/dist-packages/certbot/auth_handler.py", line 239, in _poll_challenges
raise errors.FailedChallenges(all_failed_achalls)
certbot.errors.FailedChallenges: Failed authorization procedure. example.com (http-01): urn:ietf:params:acme:error:connection :: The server could not connect to the client to verify the domain :: 1.2.3.4: Fetching http://example.com/.well-known/acme-challenge/token: Error getting validation data
Failed authorization procedure. example.com (http-01): urn:ietf:params:acme:error:connection :: The server could not connect to the client to verify the domain :: 1.2.3.4: Fetching http://example.com/.well-known/acme-challenge/token: Error getting validation data
IMPORTANT NOTES:
- The following errors were reported by the server:
Domain: example.com
Type: connection
Detail: 1.2.3.4: Fetching
http://example.com/.well-known/acme-challenge/token:
Error getting validation data
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. Additionally, please check that
your computer has a publicly routable IP address and that no
firewalls are preventing the server from communicating with the
client. If you're using the webroot plugin, you should also verify
that you are serving files from the webroot path you provided.