We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5fa67fa + d583a16 commit ded1309Copy full SHA for ded1309
1 file changed
cmd/main.go
@@ -115,6 +115,10 @@ func main() {
115
116
ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
117
118
+ tlsOpts = append(tlsOpts, func(c *tls.Config) {
119
+ c.MinVersion = tls.VersionTLS13
120
+ })
121
+
122
// if the enable-http2 flag is false (the default), http/2 should be disabled
123
// due to its vulnerabilities. More specifically, disabling http/2 will
124
// prevent from being vulnerable to the HTTP/2 Stream Cancellation and
0 commit comments