2019-11-16 08:30:06 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-16 08:30:06 +00:00
|
|
|
|
|
|
|
package setting
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// Migrations settings
|
|
|
|
var Migrations = struct {
|
|
|
|
MaxAttempts int
|
|
|
|
RetryBackoff int
|
|
|
|
AllowedDomains string
|
|
|
|
BlockedDomains string
|
|
|
|
AllowLocalNetworks bool
|
|
|
|
SkipTLSVerify bool
|
|
|
|
}{
|
|
|
|
MaxAttempts: 3,
|
|
|
|
RetryBackoff: 3,
|
|
|
|
}
|
2019-11-16 08:30:06 +00:00
|
|
|
|
2023-02-19 16:12:01 +00:00
|
|
|
func loadMigrationsFrom(rootCfg ConfigProvider) {
|
|
|
|
sec := rootCfg.Section("migrations")
|
2019-11-16 08:30:06 +00:00
|
|
|
Migrations.MaxAttempts = sec.Key("MAX_ATTEMPTS").MustInt(Migrations.MaxAttempts)
|
|
|
|
Migrations.RetryBackoff = sec.Key("RETRY_BACKOFF").MustInt(Migrations.RetryBackoff)
|
2020-11-29 00:37:58 +00:00
|
|
|
|
2021-11-20 09:34:05 +00:00
|
|
|
Migrations.AllowedDomains = sec.Key("ALLOWED_DOMAINS").MustString("")
|
|
|
|
Migrations.BlockedDomains = sec.Key("BLOCKED_DOMAINS").MustString("")
|
2020-11-29 00:37:58 +00:00
|
|
|
Migrations.AllowLocalNetworks = sec.Key("ALLOW_LOCALNETWORKS").MustBool(false)
|
2021-08-18 13:10:39 +00:00
|
|
|
Migrations.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool(false)
|
2019-11-16 08:30:06 +00:00
|
|
|
}
|