mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-13 07:10:34 +01:00
Lighttpd (and some other apps) requires both cert and privkey to be in the same .pem file #97
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 @the-vindicar on GitHub (May 11, 2016).
Could this be made an option?
Or, if it can be done with hook, can you add a doc entry regarding how to do it?
@lukas2511 commented on GitHub (May 11, 2016):
I don't want any more formats of keys and certs so this would have to be done with a hook script.
In theory something like this should work (untested):
@domenpk commented on GitHub (Jun 8, 2016):
Hook should actually contain CERTFILE instead of FULLCHAINFILE:
@lukas2511 commented on GitHub (Jun 8, 2016):
@domenpk and then you are missing the chain certificates, which are important too ¯(ツ)/¯
@domenpk commented on GitHub (Jun 8, 2016):
Ah, no, no... Lighttpd has 2 config options
ssl.pemfileandssl.ca-file. Former should contain both KEYFILE and CERTFILE, latter is FULLCHAINFILE.@lukas2511 commented on GitHub (Jun 8, 2016):
Interesting... don't even want to know how it came to this.
Anyway, with hooks this can easily be done :)
@the-vindicar commented on GitHub (Jun 8, 2016):
Using the hook method now and it works fine, thanks!
However, you might still want to add this use-case to documentation, for googlers' sake.