Skip to content

Commit

Permalink
Change Server TLS Min Version to 1.3 (#5170)
Browse files Browse the repository at this point in the history
Signed-off-by: David Koller <admin@appit-online.de>
  • Loading branch information
appit-online committed Mar 9, 2022
1 parent 9ed8ed7 commit 122ca4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/tls/options.go
Expand Up @@ -35,7 +35,7 @@ func NewServerConfig(logger log.Logger, cert, key, clientCA string) (*tls.Config
}

tlsCfg := &tls.Config{
MinVersion: tls.VersionTLS12,
MinVersion: tls.VersionTLS13,
}

mngr := &serverTLSManager{
Expand Down

0 comments on commit 122ca4e

Please sign in to comment.