I’ve been given a VPS which can’t use 80 and 443 externally so they use 8585 for HTTP and 8989 for HTTPS.
These are my attempts to create a cert based on some research:
$ ./letsencrypt-auto certonly --renew-by-default --webroot -w /srv/frontend -d domain.com
$ ./letsencrypt-auto certonly --http-01-port 8585 --renew-by-default --webroot -w /srv/frontend -d domain.com
$ ./letsencrypt-auto certonly -a manual -d domain.com --http-01-port 8585
Result:
- The following errors were reported by the server:
Domain: domain.com
Type: connection
Detail: Could not connect to http://domain.com/.well-known
/acme-challenge/r1Wb4Wnc6...
Any help?