Add TLS options#645
Merged
root-expert merged 4 commits intovoxpupuli:masterfrom Oct 7, 2022
Merged
Conversation
70b5db8 to
96e5c6e
Compare
|
Any change this can be merged ? Already using this without any problems. |
root-expert
reviewed
Sep 18, 2022
Member
root-expert
left a comment
There was a problem hiding this comment.
Thanks for the PR!
I left some minor comments to be addressed before merging. 😄
d1138b1 to
00d0424
Compare
…ig file Starting in version 4.2, MongoDB provides net.tls settings. See https://www.mongodb.com/docs/v5.0/tutorial/configure-ssl/#procedures--using-net.tls-settings And tls args for the client : https://www.mongodb.com/docs/v5.0/tutorial/configure-ssl-clients/ SSL options are deprecated : https://www.mongodb.com/docs/v5.0/reference/configuration-options/#net.ssl-options weak_cert option is now conn_without_cert See : https://www.mongodb.com/docs/v3.0/release-notes/3.0-compatibility/#tls-ssl-configuration-option-changes
Co-authored-by: Christos Papageorgiou <christos.papageorgioy@gmail.com>
Contributor
Author
|
PR is ready ! |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request (PR) description
Add support of TLS options because SSL options are deprecated since MongoDB 4.2.
You have to switch explicitly from SSL parameters to TLS parameters in the server class.
This Pull Request (PR) fixes the following issues
Fixes #567