Skip to content

Commit

Permalink
Change Server TLS Min Version to 1.3
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 Feb 21, 2022
1 parent d0249f1 commit ec97f8a
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 ec97f8a

Please sign in to comment.