cmd/derper: disable TLS 1.0 and 1.1.
Updates tailscale/corp#3568 Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
69392411d9
commit
f5ec916214
|
@ -241,6 +241,8 @@ func main() {
|
|||
cert.Certificate = append(cert.Certificate, s.MetaCert())
|
||||
return cert, nil
|
||||
}
|
||||
// Disable TLS 1.0 and 1.1, which are obsolete and have security issues.
|
||||
httpsrv.TLSConfig.MinVersion = tls.VersionTLS12
|
||||
httpsrv.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.TLS != nil {
|
||||
label := "unknown"
|
||||
|
|
Loading…
Reference in New Issue