mirror of https://github.com/go-gitea/gitea.git
Fix webhooks to use proxy from environment (#8116)
This commit is contained in:
parent
6ddd3b0b47
commit
7eacdcf39a
|
@ -973,6 +973,7 @@ func InitDeliverHooks() {
|
||||||
webhookHTTPClient = &http.Client{
|
webhookHTTPClient = &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
TLSClientConfig: &tls.Config{InsecureSkipVerify: setting.Webhook.SkipTLSVerify},
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: setting.Webhook.SkipTLSVerify},
|
||||||
|
Proxy: http.ProxyFromEnvironment,
|
||||||
Dial: func(netw, addr string) (net.Conn, error) {
|
Dial: func(netw, addr string) (net.Conn, error) {
|
||||||
conn, err := net.DialTimeout(netw, addr, timeout)
|
conn, err := net.DialTimeout(netw, addr, timeout)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue