2020-02-22 09:05:26 +08:00
|
|
|
|
// Copyright 2020 The Gogs Authors. All rights reserved.
|
|
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
|
|
package conf
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"net/url"
|
|
|
|
|
|
"os"
|
2020-02-29 16:29:17 +08:00
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/gogs/go-libravatar"
|
2020-02-22 09:05:26 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// ℹ️ README: This file contains static values that should only be set at initialization time.
|
2022-06-25 18:07:39 +08:00
|
|
|
|
//
|
|
|
|
|
|
// ⚠️ WARNING: After changing any options, do not forget to update template of
|
|
|
|
|
|
// "/admin/config" page as well.
|
2020-02-22 09:05:26 +08:00
|
|
|
|
|
|
|
|
|
|
// HasMinWinSvc is whether the application is built with Windows Service support.
|
2020-02-22 15:22:32 +08:00
|
|
|
|
//
|
2020-02-29 22:24:20 +08:00
|
|
|
|
// ⚠️ WARNING: should only be set by "internal/conf/static_minwinsvc.go".
|
2020-02-22 09:05:26 +08:00
|
|
|
|
var HasMinWinSvc bool
|
|
|
|
|
|
|
2020-02-22 15:22:32 +08:00
|
|
|
|
// Build time and commit information.
|
|
|
|
|
|
//
|
2020-02-29 22:24:20 +08:00
|
|
|
|
// ⚠️ WARNING: should only be set by "-ldflags".
|
2020-02-22 09:05:26 +08:00
|
|
|
|
var (
|
|
|
|
|
|
BuildTime string
|
|
|
|
|
|
BuildCommit string
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// CustomConf returns the absolute path of custom configuration file that is used.
|
|
|
|
|
|
var CustomConf string
|
|
|
|
|
|
|
|
|
|
|
|
var (
|
2020-02-22 20:46:16 +08:00
|
|
|
|
// Security settings
|
|
|
|
|
|
Security struct {
|
2020-02-27 18:06:38 +08:00
|
|
|
|
InstallLock bool
|
|
|
|
|
|
SecretKey string
|
|
|
|
|
|
LoginRememberDays int
|
|
|
|
|
|
CookieRememberName string
|
|
|
|
|
|
CookieUsername string
|
|
|
|
|
|
CookieSecure bool
|
|
|
|
|
|
EnableLoginStatusCookie bool
|
|
|
|
|
|
LoginStatusCookieName string
|
2022-03-14 22:06:08 +08:00
|
|
|
|
LocalNetworkAllowlist []string `delim:","`
|
2020-02-22 20:46:16 +08:00
|
|
|
|
}
|
2020-02-25 00:35:35 +08:00
|
|
|
|
|
|
|
|
|
|
// Email settings
|
|
|
|
|
|
Email struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
SubjectPrefix string
|
|
|
|
|
|
Host string
|
|
|
|
|
|
From string
|
|
|
|
|
|
User string
|
|
|
|
|
|
Password string
|
|
|
|
|
|
|
|
|
|
|
|
DisableHELO bool `ini:"DISABLE_HELO"`
|
|
|
|
|
|
HELOHostname string `ini:"HELO_HOSTNAME"`
|
|
|
|
|
|
|
|
|
|
|
|
SkipVerify bool
|
|
|
|
|
|
UseCertificate bool
|
|
|
|
|
|
CertFile string
|
|
|
|
|
|
KeyFile string
|
|
|
|
|
|
|
|
|
|
|
|
UsePlainText bool
|
|
|
|
|
|
AddPlainTextAlt bool
|
|
|
|
|
|
|
|
|
|
|
|
// Derived from other static values
|
|
|
|
|
|
FromEmail string `ini:"-"` // Parsed email address of From without person's name.
|
|
|
|
|
|
}
|
2020-02-27 18:06:38 +08:00
|
|
|
|
|
|
|
|
|
|
// Authentication settings
|
|
|
|
|
|
Auth struct {
|
|
|
|
|
|
ActivateCodeLives int
|
|
|
|
|
|
ResetPasswordCodeLives int
|
|
|
|
|
|
RequireEmailConfirmation bool
|
|
|
|
|
|
RequireSigninView bool
|
|
|
|
|
|
DisableRegistration bool
|
|
|
|
|
|
EnableRegistrationCaptcha bool
|
|
|
|
|
|
|
|
|
|
|
|
EnableReverseProxyAuthentication bool
|
|
|
|
|
|
EnableReverseProxyAutoRegistration bool
|
|
|
|
|
|
ReverseProxyAuthenticationHeader string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// User settings
|
|
|
|
|
|
User struct {
|
|
|
|
|
|
EnableEmailNotification bool
|
|
|
|
|
|
}
|
2020-02-29 00:26:03 +08:00
|
|
|
|
|
|
|
|
|
|
// Session settings
|
|
|
|
|
|
Session struct {
|
|
|
|
|
|
Provider string
|
|
|
|
|
|
ProviderConfig string
|
|
|
|
|
|
CookieName string
|
|
|
|
|
|
CookieSecure bool
|
|
|
|
|
|
GCInterval int64 `ini:"GC_INTERVAL"`
|
|
|
|
|
|
MaxLifeTime int64
|
|
|
|
|
|
CSRFCookieName string `ini:"CSRF_COOKIE_NAME"`
|
|
|
|
|
|
}
|
2020-02-29 16:29:17 +08:00
|
|
|
|
|
|
|
|
|
|
// Cache settings
|
|
|
|
|
|
Cache struct {
|
|
|
|
|
|
Adapter string
|
|
|
|
|
|
Interval int
|
|
|
|
|
|
Host string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// HTTP settings
|
|
|
|
|
|
HTTP struct {
|
|
|
|
|
|
AccessControlAllowOrigin string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Attachment settings
|
|
|
|
|
|
Attachment struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
Path string
|
|
|
|
|
|
AllowedTypes []string `delim:"|"`
|
|
|
|
|
|
MaxSize int64
|
|
|
|
|
|
MaxFiles int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-04 21:14:15 +08:00
|
|
|
|
// Release settings
|
2020-02-29 16:29:17 +08:00
|
|
|
|
Release struct {
|
|
|
|
|
|
Attachment struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
AllowedTypes []string `delim:"|"`
|
|
|
|
|
|
MaxSize int64
|
|
|
|
|
|
MaxFiles int
|
|
|
|
|
|
} `ini:"release.attachment"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Time settings
|
|
|
|
|
|
Time struct {
|
|
|
|
|
|
Format string
|
|
|
|
|
|
|
|
|
|
|
|
// Derived from other static values
|
|
|
|
|
|
FormatLayout string `ini:"-"` // Actual layout of the Format.
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Picture settings
|
|
|
|
|
|
Picture struct {
|
|
|
|
|
|
AvatarUploadPath string
|
|
|
|
|
|
RepositoryAvatarUploadPath string
|
|
|
|
|
|
GravatarSource string
|
|
|
|
|
|
DisableGravatar bool
|
|
|
|
|
|
EnableFederatedAvatar bool
|
|
|
|
|
|
|
|
|
|
|
|
// Derived from other static values
|
|
|
|
|
|
LibravatarService *libravatar.Libravatar `ini:"-"` // Initialized client for federated avatar.
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Mirror settings
|
|
|
|
|
|
Mirror struct {
|
|
|
|
|
|
DefaultInterval int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Webhook settings
|
|
|
|
|
|
Webhook struct {
|
|
|
|
|
|
Types []string
|
|
|
|
|
|
DeliverTimeout int
|
|
|
|
|
|
SkipTLSVerify bool `ini:"SKIP_TLS_VERIFY"`
|
|
|
|
|
|
PagingNum int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-04 21:14:15 +08:00
|
|
|
|
// Markdown settings
|
2020-02-29 16:29:17 +08:00
|
|
|
|
Markdown struct {
|
|
|
|
|
|
EnableHardLineBreak bool
|
|
|
|
|
|
CustomURLSchemes []string `ini:"CUSTOM_URL_SCHEMES"`
|
|
|
|
|
|
FileExtensions []string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Smartypants settings
|
|
|
|
|
|
Smartypants struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
Fractions bool
|
|
|
|
|
|
Dashes bool
|
|
|
|
|
|
LatexDashes bool
|
|
|
|
|
|
AngledQuotes bool
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Admin settings
|
|
|
|
|
|
Admin struct {
|
|
|
|
|
|
DisableRegularOrgCreation bool
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Cron tasks
|
|
|
|
|
|
Cron struct {
|
|
|
|
|
|
UpdateMirror struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
RunAtStart bool
|
|
|
|
|
|
Schedule string
|
|
|
|
|
|
} `ini:"cron.update_mirrors"`
|
|
|
|
|
|
RepoHealthCheck struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
RunAtStart bool
|
|
|
|
|
|
Schedule string
|
|
|
|
|
|
Timeout time.Duration
|
|
|
|
|
|
Args []string `delim:" "`
|
|
|
|
|
|
} `ini:"cron.repo_health_check"`
|
|
|
|
|
|
CheckRepoStats struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
RunAtStart bool
|
|
|
|
|
|
Schedule string
|
|
|
|
|
|
} `ini:"cron.check_repo_stats"`
|
|
|
|
|
|
RepoArchiveCleanup struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
RunAtStart bool
|
|
|
|
|
|
Schedule string
|
|
|
|
|
|
OlderThan time.Duration
|
|
|
|
|
|
} `ini:"cron.repo_archive_cleanup"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Git settings
|
|
|
|
|
|
Git struct {
|
2020-02-29 22:24:20 +08:00
|
|
|
|
// ⚠️ WARNING: Should only be set by "internal/db/repo.go".
|
|
|
|
|
|
Version string `ini:"-"`
|
|
|
|
|
|
|
2020-03-08 19:09:31 +08:00
|
|
|
|
DisableDiffHighlight bool
|
|
|
|
|
|
MaxDiffFiles int `ini:"MAX_GIT_DIFF_FILES"`
|
|
|
|
|
|
MaxDiffLines int `ini:"MAX_GIT_DIFF_LINES"`
|
|
|
|
|
|
MaxDiffLineChars int `ini:"MAX_GIT_DIFF_LINE_CHARACTERS"`
|
|
|
|
|
|
GCArgs []string `ini:"GC_ARGS" delim:" "`
|
|
|
|
|
|
Timeout struct {
|
2020-02-29 16:29:17 +08:00
|
|
|
|
Migrate int
|
|
|
|
|
|
Mirror int
|
|
|
|
|
|
Clone int
|
|
|
|
|
|
Pull int
|
2020-09-29 18:12:17 +03:00
|
|
|
|
Diff int
|
2020-02-29 16:29:17 +08:00
|
|
|
|
GC int `ini:"GC"`
|
|
|
|
|
|
} `ini:"git.timeout"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// API settings
|
|
|
|
|
|
API struct {
|
|
|
|
|
|
MaxResponseItems int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Prometheus settings
|
|
|
|
|
|
Prometheus struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
EnableBasicAuth bool
|
|
|
|
|
|
BasicAuthUsername string
|
|
|
|
|
|
BasicAuthPassword string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Other settings
|
|
|
|
|
|
Other struct {
|
|
|
|
|
|
ShowFooterBranding bool
|
|
|
|
|
|
ShowFooterTemplateLoadTime bool
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Global setting
|
|
|
|
|
|
HasRobotsTxt bool
|
2020-02-22 09:05:26 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2022-06-25 18:07:39 +08:00
|
|
|
|
type AppOpts struct {
|
|
|
|
|
|
// ⚠️ WARNING: Should only be set by the main package (i.e. "gogs.go").
|
|
|
|
|
|
Version string `ini:"-"`
|
|
|
|
|
|
|
|
|
|
|
|
BrandName string
|
|
|
|
|
|
RunUser string
|
|
|
|
|
|
RunMode string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Application settings
|
|
|
|
|
|
var App AppOpts
|
|
|
|
|
|
|
2020-04-06 23:53:55 +08:00
|
|
|
|
type ServerOpts struct {
|
|
|
|
|
|
ExternalURL string `ini:"EXTERNAL_URL"`
|
|
|
|
|
|
Domain string
|
|
|
|
|
|
Protocol string
|
|
|
|
|
|
HTTPAddr string `ini:"HTTP_ADDR"`
|
|
|
|
|
|
HTTPPort string `ini:"HTTP_PORT"`
|
|
|
|
|
|
CertFile string
|
|
|
|
|
|
KeyFile string
|
|
|
|
|
|
TLSMinVersion string `ini:"TLS_MIN_VERSION"`
|
|
|
|
|
|
UnixSocketPermission string
|
|
|
|
|
|
LocalRootURL string `ini:"LOCAL_ROOT_URL"`
|
|
|
|
|
|
|
|
|
|
|
|
OfflineMode bool
|
|
|
|
|
|
DisableRouterLog bool
|
|
|
|
|
|
EnableGzip bool
|
|
|
|
|
|
|
|
|
|
|
|
AppDataPath string
|
|
|
|
|
|
LoadAssetsFromDisk bool
|
|
|
|
|
|
|
|
|
|
|
|
LandingURL string `ini:"LANDING_URL"`
|
|
|
|
|
|
|
|
|
|
|
|
// Derived from other static values
|
|
|
|
|
|
URL *url.URL `ini:"-"` // Parsed URL object of ExternalURL.
|
|
|
|
|
|
Subpath string `ini:"-"` // Subpath found the ExternalURL. Should be empty when not found.
|
|
|
|
|
|
SubpathDepth int `ini:"-"` // The number of slashes found in the Subpath.
|
|
|
|
|
|
UnixSocketMode os.FileMode `ini:"-"` // Parsed file mode of UnixSocketPermission.
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Server settings
|
|
|
|
|
|
var Server ServerOpts
|
|
|
|
|
|
|
2022-06-25 18:07:39 +08:00
|
|
|
|
type SSHOpts struct {
|
|
|
|
|
|
Disabled bool `ini:"DISABLE_SSH"`
|
|
|
|
|
|
Domain string `ini:"SSH_DOMAIN"`
|
|
|
|
|
|
Port int `ini:"SSH_PORT"`
|
|
|
|
|
|
RootPath string `ini:"SSH_ROOT_PATH"`
|
|
|
|
|
|
KeygenPath string `ini:"SSH_KEYGEN_PATH"`
|
|
|
|
|
|
KeyTestPath string `ini:"SSH_KEY_TEST_PATH"`
|
|
|
|
|
|
MinimumKeySizeCheck bool
|
|
|
|
|
|
MinimumKeySizes map[string]int `ini:"-"` // Load from [ssh.minimum_key_sizes]
|
|
|
|
|
|
RewriteAuthorizedKeysAtStart bool
|
|
|
|
|
|
|
|
|
|
|
|
StartBuiltinServer bool `ini:"START_SSH_SERVER"`
|
|
|
|
|
|
ListenHost string `ini:"SSH_LISTEN_HOST"`
|
|
|
|
|
|
ListenPort int `ini:"SSH_LISTEN_PORT"`
|
|
|
|
|
|
ServerCiphers []string `ini:"SSH_SERVER_CIPHERS"`
|
|
|
|
|
|
ServerMACs []string `ini:"SSH_SERVER_MACS"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// SSH settings
|
|
|
|
|
|
var SSH SSHOpts
|
|
|
|
|
|
|
|
|
|
|
|
type RepositoryOpts struct {
|
|
|
|
|
|
Root string
|
|
|
|
|
|
ScriptType string
|
|
|
|
|
|
ANSICharset string `ini:"ANSI_CHARSET"`
|
|
|
|
|
|
ForcePrivate bool
|
|
|
|
|
|
MaxCreationLimit int
|
|
|
|
|
|
PreferredLicenses []string
|
|
|
|
|
|
DisableHTTPGit bool `ini:"DISABLE_HTTP_GIT"`
|
|
|
|
|
|
EnableLocalPathMigration bool
|
|
|
|
|
|
EnableRawFileRenderMode bool
|
|
|
|
|
|
CommitsFetchConcurrency int
|
|
|
|
|
|
|
|
|
|
|
|
// Repository editor settings
|
|
|
|
|
|
Editor struct {
|
|
|
|
|
|
LineWrapExtensions []string
|
|
|
|
|
|
PreviewableFileModes []string
|
|
|
|
|
|
} `ini:"repository.editor"`
|
|
|
|
|
|
|
|
|
|
|
|
// Repository upload settings
|
|
|
|
|
|
Upload struct {
|
|
|
|
|
|
Enabled bool
|
|
|
|
|
|
TempPath string
|
|
|
|
|
|
AllowedTypes []string `delim:"|"`
|
|
|
|
|
|
FileMaxSize int64
|
|
|
|
|
|
MaxFiles int
|
|
|
|
|
|
} `ini:"repository.upload"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Repository settings
|
|
|
|
|
|
var Repository RepositoryOpts
|
|
|
|
|
|
|
2020-04-04 21:14:15 +08:00
|
|
|
|
type DatabaseOpts struct {
|
|
|
|
|
|
Type string
|
|
|
|
|
|
Host string
|
|
|
|
|
|
Name string
|
2022-01-05 22:02:33 +08:00
|
|
|
|
Schema string
|
2020-04-04 21:14:15 +08:00
|
|
|
|
User string
|
|
|
|
|
|
Password string
|
|
|
|
|
|
SSLMode string `ini:"SSL_MODE"`
|
|
|
|
|
|
Path string
|
|
|
|
|
|
MaxOpenConns int
|
|
|
|
|
|
MaxIdleConns int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-06 23:53:55 +08:00
|
|
|
|
// Database settings
|
|
|
|
|
|
var Database DatabaseOpts
|
|
|
|
|
|
|
2020-04-10 22:13:42 +08:00
|
|
|
|
type LFSOpts struct {
|
|
|
|
|
|
Storage string
|
|
|
|
|
|
ObjectsPath string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// LFS settings
|
|
|
|
|
|
var LFS LFSOpts
|
|
|
|
|
|
|
2022-06-25 18:07:39 +08:00
|
|
|
|
type UIUserOpts struct {
|
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
|
NewsFeedPagingNum int
|
|
|
|
|
|
CommitsPagingNum int
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type UIOpts struct {
|
|
|
|
|
|
ExplorePagingNum int
|
|
|
|
|
|
IssuePagingNum int
|
|
|
|
|
|
FeedMaxCommitNum int
|
|
|
|
|
|
ThemeColorMetaTag string
|
|
|
|
|
|
MaxDisplayFileSize int64
|
|
|
|
|
|
|
|
|
|
|
|
Admin struct {
|
|
|
|
|
|
UserPagingNum int
|
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
|
NoticePagingNum int
|
|
|
|
|
|
OrgPagingNum int
|
|
|
|
|
|
} `ini:"ui.admin"`
|
|
|
|
|
|
User UIUserOpts `ini:"ui.user"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// UI settings
|
|
|
|
|
|
var UI UIOpts
|
|
|
|
|
|
|
2020-02-29 22:24:20 +08:00
|
|
|
|
type i18nConf struct {
|
|
|
|
|
|
Langs []string `delim:","`
|
|
|
|
|
|
Names []string `delim:","`
|
|
|
|
|
|
dateLangs map[string]string `ini:"-"`
|
2020-02-29 16:29:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// DateLang transforms standard language locale name to corresponding value in datetime plugin.
|
2020-02-29 22:24:20 +08:00
|
|
|
|
func (c *i18nConf) DateLang(lang string) string {
|
|
|
|
|
|
name, ok := c.dateLangs[lang]
|
2020-02-29 16:29:17 +08:00
|
|
|
|
if ok {
|
|
|
|
|
|
return name
|
|
|
|
|
|
}
|
|
|
|
|
|
return "en"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-06 23:53:55 +08:00
|
|
|
|
// I18n settings
|
|
|
|
|
|
var I18n *i18nConf
|
|
|
|
|
|
|
2020-02-22 15:22:32 +08:00
|
|
|
|
// handleDeprecated transfers deprecated values to the new ones when set.
|
|
|
|
|
|
func handleDeprecated() {
|
2020-08-22 22:25:21 +08:00
|
|
|
|
// Add fallback logic here, example:
|
|
|
|
|
|
// if App.AppName != "" {
|
|
|
|
|
|
// App.BrandName = App.AppName
|
|
|
|
|
|
// App.AppName = ""
|
|
|
|
|
|
// }
|
2020-02-22 09:05:26 +08:00
|
|
|
|
}
|
2020-02-29 16:29:17 +08:00
|
|
|
|
|
|
|
|
|
|
// HookMode indicates whether program starts as Git server-side hook callback.
|
|
|
|
|
|
// All operations should be done synchronously to prevent program exits before finishing.
|
2020-03-02 01:01:52 +08:00
|
|
|
|
//
|
|
|
|
|
|
// ⚠️ WARNING: Should only be set by "internal/cmd/serv.go".
|
2020-02-29 16:29:17 +08:00
|
|
|
|
var HookMode bool
|
|
|
|
|
|
|
|
|
|
|
|
// Indicates which database backend is currently being used.
|
|
|
|
|
|
var (
|
|
|
|
|
|
UseSQLite3 bool
|
|
|
|
|
|
UseMySQL bool
|
|
|
|
|
|
UsePostgreSQL bool
|
|
|
|
|
|
UseMSSQL bool
|
|
|
|
|
|
)
|