diff --git a/internal/pkg/cert/persist.go b/internal/pkg/cert/persist.go index 797a828..60dc463 100755 --- a/internal/pkg/cert/persist.go +++ b/internal/pkg/cert/persist.go @@ -20,6 +20,7 @@ Email: email, // Store email with the cert CertPEM: cert.CertPEM, KeyPEM: cert.KeyPEM, + FullChainPEM: cert.FullChain, // ADDED: Save the full chain AccountKey: cert.AccountKey, AccountURL: cert.AccountURL, IssuerType: issuertype, @@ -56,6 +57,7 @@ Domain: certStorage.Domain, CertPEM: certStorage.CertPEM, KeyPEM: certStorage.KeyPEM, + FullChain: certStorage.FullChainPEM, // ADDED: Load the full chain AccountKey: certStorage.AccountKey, AccountURL: certStorage.AccountURL, EnableRotation: certStorage.EnableRotation,