Last active
October 1, 2021 08:27
-
-
Save kujiy/67ef342170c4b0a36bb4bd9615ae2916 to your computer and use it in GitHub Desktop.
Let's Encrypt DST Root CA X3 Expiration: Work Around 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cleanup | |
mv /etc/pki/ca-trust/source/blacklist/* /tmp | |
mv /etc/pki/ca-trust/source/anchors/* /tmp | |
# fix the issue | |
cd /etc/pki/ca-trust/source/blacklist | |
wget -O dst.pem https://crt.sh/?d=0687260331A72403D909F105E69BCF0D32E1BD2493FFC6D9206D11BCD6770739 | |
cd /etc/pki/ca-trust/source/anchors | |
wget --no-check-certificate https://letsencrypt.org/certs/isrgrootx1.pem | |
update-ca-trust | |
DOMAIN=$YOUR_DOMAIN | |
openssl s_client -connect $DOMAIN:443 -servername $DOMAIN | grep verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference