Skip to content
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

fixes #2260 Update tlsVersion to TLSv1.3 by default in client.yml fro… #2261

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions client-config/src/main/resources/config/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ tls:
keyPass: ${client.keyPass:password}
# public issued CA cert password
defaultCertPassword: ${client.defaultCertPassword:changeit}
# TLS version. Default is TSLv1.2, and you can downgrade to TLSv1 to support some internal old servers that support only TLSv1.1(deprecated
# and risky). You can also upgrade to TSLv1.3 for maximum security if all your servers support it.
tlsVersion: ${client.tlsVersion:TLSv1.2}
# TLS version. Default is TSLv1.3, and you can downgrade to TLSv1.2 to support some internal old servers that support only TLSv1.1
# and 1.2 (deprecated and risky).
tlsVersion: ${client.tlsVersion:TLSv1.3}
# settings for OAuth2 server communication
oauth:
# OAuth 2.0 token endpoint configuration
Expand Down