mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
add ProxyFromEnvironment if none set (#1096)
This commit is contained in:
parent
f3bf409082
commit
2f7dc28b22
1 changed files with 5 additions and 1 deletions
|
@ -303,9 +303,13 @@ func (r *Request) getResponse() (*http.Response, error) {
|
|||
|
||||
if trans == nil {
|
||||
// create default transport
|
||||
proxy := r.setting.Proxy
|
||||
if proxy == nil {
|
||||
proxy = http.ProxyFromEnvironment
|
||||
}
|
||||
trans = &http.Transport{
|
||||
TLSClientConfig: r.setting.TLSClientConfig,
|
||||
Proxy: r.setting.Proxy,
|
||||
Proxy: proxy,
|
||||
Dial: TimeoutDialer(r.setting.ConnectTimeout, r.setting.ReadWriteTimeout),
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue