mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Add proxy settings and support for migration and webhook (#16704)
* Add proxy settings and support for migration and webhook * Fix default value * Add newline for example ini * Add lfs proxy support * Fix lint * Follow @zeripath's review * Fix git clone * Fix test * missgin http requests for proxy * use empty Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		@@ -16,6 +16,7 @@ var (
 | 
			
		||||
		AllowedDomains     []string
 | 
			
		||||
		BlockedDomains     []string
 | 
			
		||||
		AllowLocalNetworks bool
 | 
			
		||||
		SkipTLSVerify      bool
 | 
			
		||||
	}{
 | 
			
		||||
		MaxAttempts:  3,
 | 
			
		||||
		RetryBackoff: 3,
 | 
			
		||||
@@ -37,4 +38,5 @@ func newMigrationsService() {
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	Migrations.AllowLocalNetworks = sec.Key("ALLOW_LOCALNETWORKS").MustBool(false)
 | 
			
		||||
	Migrations.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool(false)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user