Added missing comma

This commit is contained in:
NFM-8 2019-10-07 14:56:51 +03:00
parent 0a551619c9
commit 5ecda1bdd9
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ func NewUpstreamHTTPS(endpoint string) (Upstream, error) {
}
// Update TLS and HTTP client configuration
tls := &tls.Config{ServerName: u.Hostname() MinVersion: tls.VersionTLS12}
tls := &tls.Config{ServerName: u.Hostname(), MinVersion: tls.VersionTLS12}
transport := &http.Transport{
TLSClientConfig: tls,
DisableCompression: true,