We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53cf9b9 commit c89cc23Copy full SHA for c89cc23
config/http_config.go
@@ -21,6 +21,7 @@ import (
21
"crypto/x509"
22
"encoding/json"
23
"fmt"
24
+ "io/ioutil"
25
"net"
26
"net/http"
27
"net/url"
@@ -826,6 +827,8 @@ type TLSConfig struct {
826
827
InsecureSkipVerify bool `yaml:"insecure_skip_verify" json:"insecure_skip_verify"`
828
// Minimum TLS version.
829
MinVersion TLSVersion `yaml:"min_version,omitempty" json:"min_version,omitempty"`
830
+ // Maximum TLS version.
831
+ MaxVersion TLSVersion `yaml:"max_version,omitempty" json:"max_version,omitempty"`
832
}
833
834
// SetDirectory joins any relative file paths with dir.
0 commit comments