mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
bumps minimal tls version (#1012)
This commit is contained in:
parent
b71748f1d9
commit
095be83f2f
1 changed files with 3 additions and 1 deletions
|
@ -90,6 +90,8 @@ func Serve(addr string, rh RequestHandler) {
|
||||||
}
|
}
|
||||||
cfg := &tls.Config{
|
cfg := &tls.Config{
|
||||||
Certificates: []tls.Certificate{cert},
|
Certificates: []tls.Certificate{cert},
|
||||||
|
MinVersion: tls.VersionTLS12,
|
||||||
|
PreferServerCipherSuites: true,
|
||||||
}
|
}
|
||||||
ln = tls.NewListener(ln, cfg)
|
ln = tls.NewListener(ln, cfg)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue