1

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?

bart2puck
  • 147
  • 1
  • 7

1 Answers1

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