letsencrypt-zimbra icon indicating copy to clipboard operation
letsencrypt-zimbra copied to clipboard

Files to automate the deployment process of Let's Encrypt certificates to Zimbra Collaboration Suite

Results 2 letsencrypt-zimbra issues
Sort by recently updated
recently updated
newest added

It fails with notification like: Unable to validate certificate chain: /tmp/tmp.W60adLUX4e/0000_cert.pem: C = US, O = Internet Security Research Group, CN = ISRG Root X1 If you remove the second...

Dude below you have an ordering issue create one CA chain file ``` cat "$intermediate_CA_file" "$root_CA_file" > "$chain_file" ``` should be ``` cat "$root_CA_file" "$intermediate_CA_file" > "$chain_file" ``` Then it...