From 1a230252c7f098475218c0143b107fc40cce907b Mon Sep 17 00:00:00 2001 From: eson <9673575+githubcontent@user.noreply.gitee.com> Date: Mon, 21 Aug 2023 16:38:11 +0800 Subject: [PATCH] fix --- proxyserver/main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/proxyserver/main.go b/proxyserver/main.go index 01264642..f1fcec72 100644 --- a/proxyserver/main.go +++ b/proxyserver/main.go @@ -133,7 +133,11 @@ func main() { panic(err) } - tlscfg := &tls.Config{Certificates: []tls.Certificate{cert}} + tlscfg := &tls.Config{ + Certificates: []tls.Certificate{cert}, + MinVersion: tls.VersionTLS12, + MaxVersion: tls.VersionTLS13, + } serv := http.Server{ Addr: ServerAddress, Handler: mux,