From 73be25dcf7dc8f18b8489bb289cf1be46f0e9c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Wed, 12 Feb 2025 23:52:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8F=90=E5=8D=87go1.24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 2 +- internal/bootstrap/http.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 00fd403b..73c89c8f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/tnb-labs/panel -go 1.23 +go 1.24 require ( github.com/bddjr/hlfhr v1.3.8 diff --git a/internal/bootstrap/http.go b/internal/bootstrap/http.go index fe4f0792..4d370a38 100644 --- a/internal/bootstrap/http.go +++ b/internal/bootstrap/http.go @@ -38,7 +38,7 @@ func NewHttp(conf *koanf.Koanf, r *chi.Mux) (*hlfhr.Server, error) { if conf.Bool("http.tls") { srv.TLSConfig = &tls.Config{ - MinVersion: tls.VersionTLS13, + MinVersion: tls.VersionTLS12, } }