Can't Issue SSL

Cannot issue SSL. Error message: [Tue Oct 22 03:27:15 UTC 2019] vietladders.com:Verify error:Invalid response from Lỗi 404: Trang không tìm thấy [66.42.57.223]: [Tue Oct 22 03:27:15 UTC 2019] Please add ‘–debug’ or ‘–log’ to check more details. [Tue Oct 22 03:27:15 UTC 2019] See: How to debug acme.sh · acmesh-official/acme.sh Wiki · GitHub [Tue Oct 22 03:27:26 UTC 2019] vietladders.com:Verify error:Invalid response from http://vietladders.com/.well-known/acme-challenge/JJdQ6L_nDJbdOoNE-h-r7P78aCq-9P2hH85CDbq5LeE [66.42.57.223]: [Tue Oct 22 03:27:26 UTC 2019] Please add ‘–debug’ or ‘–log’ to check more details. [Tue Oct 22 03:27:26 UTC 2019] See: How to debug acme.sh · acmesh-official/acme.sh Wiki · GitHub 0,283 Failed to obtain SSL for domain. [issueSSLForDomain]
Can you help me?

Cannot issue SSL. Error message: [Tue Oct 22 03:27:15 UTC 2019] vietladders.com:Verify error:Invalid response from http://vietladders.com/.well-known/acme-challenge/2zMt99k_CTHM9U_jIVPMyBTsZMcUOxFinuzPkHV_YOE [66.42.57.223]: [Tue Oct 22 03:27:15 UTC 2019] Please add ‘–debug’ or ‘–log’ to check more details. [Tue Oct 22 03:27:15 UTC 2019] See: How to debug acme.sh · acmesh-official/acme.sh Wiki · GitHub [Tue Oct 22 03:27:26 UTC 2019] vietladders.com:Verify error:Invalid response from http://vietladders.com/.well-known/acme-challenge/JJdQ6L_nDJbdOoNE-h-r7P78aCq-9P2hH85CDbq5LeE [66.42.57.223]: [Tue Oct 22 03:27:26 UTC 2019] Please add ‘–debug’ or ‘–log’ to check more details. [Tue Oct 22 03:27:26 UTC 2019] See: How to debug acme.sh · acmesh-official/acme.sh Wiki · GitHub 0,283 Failed to obtain SSL for domain. [issueSSLForDomain]
Can you help me?

Same problem here

Point your Domain DNS A record to the server IP and issue SSL.
I already point domain to IP before, and today i try, have same error

Type your comment> @olalavui said:

(Quote)
I already point domain to IP before, and today i try, have same error

I have a fix that worked for me. You can test it as you go.

Step 1 - Note your current cert timestamp with: openssl x509 -noout -dates -in /etc/letsencrypt/live/YOURDOMAIN.COM/cert.pem

  • Note the timestamp for “notBefore”

Step 2 - Locate and manually edit your “acme.sh” script. Mine was in /home/cyberpanel, but yours may be in /root. Inside the file find and change the following lines:

Old Lines:
DEFAULT_CA=$LETSENCRYPT_CA_V1
DEFAULT_STAGING_CA=$LETSENCRYPT_STAGING_CA_V1

New Lines:
DEFAULT_CA=$LETSENCRYPT_CA_V2
DEFAULT_STAGING_CA=$LETSENCRYPT_STAGING_CA_V2

You’re just changing the V1 to V2 for your defaults. It should work now when you force issue a cert on your domain in the next step.

Step 3 - Force issue new cert with:
/root/.acme.sh/acme.sh --issue -d YOURDOMAIN.COM -d www.YOURDOMAIN.COM --cert-file /etc/letsencrypt/live/YOURDOMAIN.COM/cert.pem --key-file /etc/letsencrypt/live/YOURDOMAIN.COM/privkey.pem --fullchain-file /etc/letsencrypt/live/YOURDOMAIN.COM/fullchain.pem -w /home/YOURDOMAIN.COM/public_html --force --debug

  • Remember to change the paths in the above appropriately for your server

You should have a successful SSL install and can move on to double checking the date, by issuing the command from Step 1 and noting the timestamp, which should be just now.

Hope that helps!