mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 05:25:15 +01:00 
			
		
		
		
	add ProxyFromEnvironment if none set (#1096)
This commit is contained in:
		
							parent
							
								
									f3bf409082
								
							
						
					
					
						commit
						2f7dc28b22
					
				@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user