Skip to content

feat: add configurable cipher suites for tls listening #10505

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

Merged
merged 13 commits into from
Nov 7, 2023
Prev Previous commit
Fix typo
  • Loading branch information
Emyrk committed Nov 7, 2023
commit d0353b063e1e9fffd95998482e960021c430775f
2 changes: 1 addition & 1 deletion cli/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ func configureCipherSuites(ctx context.Context, logger slog.Logger, ciphers []st
}
if len(missedVersions) > 0 {
return nil, xerrors.Errorf("no tls ciphers supported for tls versions %q."+
"Add additional ciphers, specify the minimum version to 'tls13, or remove the ciphers configured and rely on the default",
"Add additional ciphers, set the minimum version to 'tls13, or remove the ciphers configured and rely on the default",
strings.Join(missedVersions, ","))
}

Expand Down