-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow ssl mode to be configured #127
Conversation
|
@arnaubennassar I'm not sure who to direct this PR to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Late LGTM
You can mention @0xPolygon/core-cdk team next time @christophercampbell |
This PR adds
SSLMode
configuration. It can be set to "require", "verify-full", "verify-ca", and "disable" with "disable" as default (the current behavior).The request was to remove the sslmode parameter, where the underlying connection defaults to "require" as default. However, this PR is less intrusive to other deployment upgrades that do not require it currently.
The requester should add
SSLMode
= "require" (or whatever is needed) to the DB section of configuration file.