1 Answer
- Newest
- Most votes
- Most comments
0
Hello.
I checked using the curl command, and it appears that the SSL certificate is working without any problems.
If the expiration date has passed, the HTTPS connection will also fail with curl, but it succeeds as shown below.
curl https://beetlesmartphonesecurity.com -I
HTTP/1.1 200 OK
Date: Mon, 08 Jun 2026 10:48:44 GMT
Server: Apache/2.4.41 (Ubuntu)
Content-Type: text/html; charset=UTF-8
The expiration date seemed to be in July.
openssl s_client -connect beetlesmartphonesecurity.com:443 -servername beetlesmartphonesecurity.com </dev/null 2>/dev/null | openssl x509 -noout -dates
notBefore=Apr 17 20:35:58 2026 GMT
notAfter=Jul 16 20:35:57 2026 GMT
openssl s_client -connect beetlesmartphonesecurity.com:443 \
-servername beetlesmartphonesecurity.com </dev/null 2>/dev/null \
| openssl x509 -noout -issuer -subject -dates
issuer=C=US, O=Let's Encrypt, CN=R12
subject=CN=beetlesmartphonesecurity.com
notBefore=Apr 17 20:35:58 2026 GMT
notAfter=Jul 16 20:35:57 2026 GMT
Since your SSL certificate appears to be using Let's Encrypt, the procedure will likely differ depending on the command used to issue the certificate.
If you issued the certificate using certbot, you should be able to renew it using the renew command as shown below.
https://eff-certbot.readthedocs.io/en/stable/using.html#certbot-commands
certbot renew --dry-run
certbot renew
Relevant content
asked 4 years ago
asked 4 years ago
asked 2 years ago
