TLS - radiasoft/devops GitHub Wiki
Download TLS cert
This opens a connection and shows the cert it used:
openssl s_client -servername radia.run -connect radia.run:443 -showcerts < /dev/null
-servername
is necessary to select the certificate. The -connect
is
for the IP connection.