-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flag --bupem to make a bottom-up PEM
Outputs also a 'bottom-up' PEM (.bupem) file containing, in this order: Private .key Public .crt Issuer .crt Saves a manual `cat` step to build such a file. Useful for e.g. Postfix (+ >=OpenSSL 1.1.1) with its `*_chain_files` options: ``` smtpd_tls_chain_files = /etc/postfix/mail.example.com.rsa4096.bupem, /etc/postfix/mail.example.com.ec256.bupem smtp_tls_chain_files = /etc/postfix/mail.example.com.rsa4096.bupem, /etc/postfix/mail.example.com.ec256.bupem ``` The 'bottom-up' convention expects the private key first.
- Loading branch information
1 parent
86d9e56
commit 96ef0c2
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
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
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
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