diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-03-27 18:16:05 +0300 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-03-27 18:16:05 +0300 |
commit | db187455ab02d725149a2ce0d5b9b1fb23d1de3c (patch) | |
tree | 7fc4d4cc86968e92e516306a8636c670482f1c8a /letsencrypt | |
parent | 57d35d22c62e3fbc604c68f8bb88d40b2b798770 (diff) |
Change the default CA from LE's X1 to X3.
Diffstat (limited to 'letsencrypt')
-rwxr-xr-x | letsencrypt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/letsencrypt b/letsencrypt index 2b0249c..d11b569 100755 --- a/letsencrypt +++ b/letsencrypt @@ -604,7 +604,7 @@ elsif ($COMMAND eq 'new-cert') { }; # verify certificate validity against the CA - $conf->{CAfile} //= '/usr/share/letsencrypt-tiny/lets-encrypt-x1-cross-signed.pem'; + $conf->{CAfile} //= '/usr/share/letsencrypt-tiny/lets-encrypt-x3-cross-signed.pem'; if ($conf->{CAfile} ne '' and spawn({in => $x509}, 'openssl', 'verify', '-CAfile', $conf->{CAfile}, qw/-purpose sslserver -x509_strict/)) { print STDERR "[$s] Error: Received invalid X.509 certificate from ACME server!\n"; |