I installed a cert for my server a while ago using certbot, and cant remember if I setup as a wildcard or not, What command can I run to see if it is or not?
Asked
Active
Viewed 202 times
1
-
Which server, exactly? – Massimo May 18 '22 at 15:16
-
An apache webserver I am running. – bart2puck May 18 '22 at 15:45
1 Answers
1
If you run (replacing www.example.com
with your own hostname)
SERVERNAME=www.example.com; echo | openssl s_client -showcerts -connect $SERVERNAME:443 -servername $SERVERNAME 2>/dev/null| grep subject | grep -o "CN=.*"
then you'll either see CN=www.example.org
(no wildcard) or CN=*.example.org
(a wildcard cert)

jaygooby
- 314
- 1
- 2
- 13
-
IF you are feelign saucy, please see my next question at: https://serverfault.com/questions/1101249/certbot-wildcard-cert-not-a-wildcard – bart2puck May 18 '22 at 16:51
-
-