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, } }