Fix webhooks to use proxy from environment (#8116)

pull/8006/head^2
Lauris BH 2019-09-09 19:21:07 +03:00 committed by Lunny Xiao
parent 6ddd3b0b47
commit 7eacdcf39a
1 changed files with 1 additions and 0 deletions

View File

@ -973,6 +973,7 @@ func InitDeliverHooks() {
webhookHTTPClient = &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: setting.Webhook.SkipTLSVerify},
Proxy: http.ProxyFromEnvironment,
Dial: func(netw, addr string) (net.Conn, error) {
conn, err := net.DialTimeout(netw, addr, timeout)
if err != nil {