2019-11-16 03:30:06 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-16 03:30:06 -05:00
|
|
|
|
|
|
|
package setting
|
|
|
|
|
2022-01-20 12:46:10 -05: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 03:30:06 -05:00
|
|
|
|
|
|
|
func newMigrationsService() {
|
|
|
|
sec := Cfg.Section("migrations")
|
|
|
|
Migrations.MaxAttempts = sec.Key("MAX_ATTEMPTS").MustInt(Migrations.MaxAttempts)
|
|
|
|
Migrations.RetryBackoff = sec.Key("RETRY_BACKOFF").MustInt(Migrations.RetryBackoff)
|
2020-11-28 19:37:58 -05:00
|
|
|
|
2021-11-20 04:34:05 -05:00
|
|
|
Migrations.AllowedDomains = sec.Key("ALLOWED_DOMAINS").MustString("")
|
|
|
|
Migrations.BlockedDomains = sec.Key("BLOCKED_DOMAINS").MustString("")
|
2020-11-28 19:37:58 -05:00
|
|
|
Migrations.AllowLocalNetworks = sec.Key("ALLOW_LOCALNETWORKS").MustBool(false)
|
2021-08-18 09:10:39 -04:00
|
|
|
Migrations.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool(false)
|
2019-11-16 03:30:06 -05:00
|
|
|
}
|