Random things I found out
 

X.509 Certificate Terminal Commands

For more details about X.509 certificates, you can read the wikipedia article at https://en.wikipedia.org/wiki/X.509 Display Certificate Values subject, expiry, signature algorithm, fingerprint, modulus md5 sum CERT=crt.pem echo; echo “Cert:” $CERT; CERTV=$(openssl x509 -text -noout -in $CERT);echo -n “Subject: “;echo “$CERTV”|grep -i [S]ubject:|cut -d ‘:’ -f 2;echo -n “Issuer Date: “;echo …

Installing Let’s Encrypt SSL certificates on Ubuntu, things to know

Preparing your server for SSL If you are installing SSL and Let’s Encrypt on Ubuntu for the first time, you should first enable SSL on your apache install. If you don’t you will get this error message: SSLCertificateFile: file ‘/etc/apache2/insert_cert_file_path’ does not exist or is empty First enable SSL: sudo …