-
Notifications
You must be signed in to change notification settings - Fork 2k
Conversation
Why is the CA bundle required? what happens if it's not there? which is the case now. A couple of comments on my side:
Thanks for contributing to the project. |
If a person buys a Comodo SSL certificate for example, not all browsers will validate the crt, which is why they provide a CABundle.crt or mulple CA's to add to create a CABundle.crt. Adding the CABundle that a Certificate Authority provides (like Comodo), fixes that issue. I bought a Comodo cert, this was required to have it work correctly. So I thought I would share. |
I'm not opposed to having it in there as a comment. But, the self-signed certs do not come with a bundle file, and since our instructions and scripts allow for self-assigned, this would break. |
How would this break? I would love to hear about it. As the cabundle.crt wont break anything its just an added root ca file that accompanies some ssl providers certificates. |
Tell you what codydaig, create a blank cabundle.crt file. Enable those options in the proper configs. create a self signed cert. Now show me how this breaks... |
@siteshackinc what we mean is that if we try to just merge this PR it will break because we are telling the server to look for the This will be the error that the user will see:
I do however see the value in this PR and if we can put an empty file then I'm all up for it.
|
What if you add a line in the something like |
@siteshackinc @lirantal let's try to wrap this up. Can we get a consensus on the implementation and do a final review before merging? @siteshackinc make sure there is only 1 commit and it follows the commit message guidelines before we review so we can just merge it in right away if it looks good. |
@siteshackinc let's add it to config/sslcerts/cabundle.crt as @jloveland suggested and squash the commits to 1 for this to be merged in. |
@siteshackinc can you make the changes @lirantal requested ^^? |
@ilanbiala @siteshackinc my PR for applying this fix is here: #1342 |
Added CA Bundle option for SSL Certs