1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-18 20:59:43 +02:00

Set TLS min to 1.3

This commit is contained in:
Harvey Kandola 2022-10-21 11:12:17 -04:00
parent e4025bee42
commit 4c031fe7e4

2
core/env/parser.go vendored
View file

@ -88,7 +88,7 @@ func configFile() (f Flags, ok bool) {
f.Location = strings.ToLower(ct.Install.Location)
if len(f.TLSVersion) == 0 {
f.TLSVersion = "1.2"
f.TLSVersion = "1.3"
}
ok = true