Tls self_signed - path to ssl certs?

With tls self_signed option where are the paths to the ssl cert files ?

As part of my Caddy integration, I also plan to be able to list all ssl certs and their expiry dates so that I can setup push notifications to mobile/tablet devices. But can’t find where these self signed ssl certs are located ?

The self-signed certs are kept in memory only; they’re not written to disk.

1 Like

cheers @elcore looks like will just need to get that info via openssl insead :slight_smile:

echo | openssl s_client -connect google.com:443 2>/dev/null | openssl x509 -noout -dates
notBefore=Jul 28 11:48:19 2016 GMT
notAfter=Oct 20 11:40:00 2016 GMT
1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.