mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
Add an option to automatically print the certificate plus the intermediate one #67
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ThiefMaster on GitHub (Feb 21, 2016).
As a nginx user I need both in the same file. It would be nice if I could just copy the whole script output to my certificate file instead of having to append the intermediate certificate manually
@lukas2511 commented on GitHub (Feb 21, 2016):
In normal operation this script creates
fullchain.pemfiles for each certificate, containing intermediate(s) and your certificate.@ThiefMaster commented on GitHub (Feb 21, 2016):
ah, didn't know that, was always using
-s@lukas2511 commented on GitHub (Feb 21, 2016):
Yea, for the signcsr command this is actually missing, might be a good idea to add that in there too.
@nielslaukens commented on GitHub (Jul 25, 2016):
I know I'm late to the party, but I object to this change.
I've specifically written the
--signcsrcommand (https://github.com/lukas2511/letsencrypt.sh/pull/95) to be as simple as possible, doing only what is strictly needed. That is: get a CSR signed. If you need the certificate chain, you can get it yourself. (As the commit shows, it's only a few lines).I need my Certificate chain in a separate file, and now I have to manually split the output again.
Or at least, make it configurable to include the full chain or not.
@lukas2511 commented on GitHub (Aug 4, 2016):
i changed it so now it only prints the full certificate chain if --full-chain/-fc is set