mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
26 lines
631 B
Go
26 lines
631 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"crypto/tls"
|
||
|
"net/http"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// Transport creates http.Transport object based on provided URL.
|
||
|
// Returns Transport with TLS configuration if URL contains `https` prefix
|
||
|
func Transport(URL string, insecureSkipVerify bool) *http.Transport {
|
||
|
t := http.DefaultTransport.(*http.Transport).Clone()
|
||
|
if !strings.HasPrefix(URL, "https") {
|
||
|
return t
|
||
|
}
|
||
|
t.TLSClientConfig = TLSConfig(insecureSkipVerify)
|
||
|
return t
|
||
|
}
|
||
|
|
||
|
// TLSConfig creates tls.Config object from provided arguments
|
||
|
func TLSConfig(insecureSkipVerify bool) *tls.Config {
|
||
|
return &tls.Config{
|
||
|
InsecureSkipVerify: insecureSkipVerify,
|
||
|
}
|
||
|
}
|