Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go74
1 files changed, 0 insertions, 74 deletions
diff --git a/app_config.go b/app_config.go
deleted file mode 100644
index f3048915..00000000
--- a/app_config.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package main
-
-import "time"
-
-type appConfig struct {
- PagesRoot string
- Domain string
- ArtifactsServer string
- ArtifactsServerTimeout int
- RootCertificate []byte
- RootKey []byte
- MaxConns int
-
- ListenHTTP []uintptr
- ListenHTTPS []uintptr
- ListenProxy []uintptr
- ListenHTTPSProxyv2 []uintptr
- ListenMetrics uintptr
- InsecureCiphers bool
- TLSMinVersion uint16
- TLSMaxVersion uint16
-
- HTTP2 bool
- RedirectHTTP bool
- StatusPath string
-
- DisableCrossOriginRequests bool
- PropagateCorrelationID bool
-
- LogFormat string
- LogVerbose bool
-
- StoreSecret string
- GitLabServer string
- InternalGitLabServer string
- GitLabAPISecretKey []byte
- GitlabClientHTTPTimeout time.Duration
- GitlabJWTTokenExpiration time.Duration
- DomainConfigurationSource string
- ClientID string
- ClientSecret string
- RedirectURI string
- AuthScope string
- SentryDSN string
- SentryEnvironment string
- CustomHeaders []string
-
- ZipCacheExpiry time.Duration
- ZipCacheRefresh time.Duration
- ZipCacheCleanup time.Duration
- ZipeOpenTimeout time.Duration
-}
-
-// InternalGitLabServerURL returns URL to a GitLab instance.
-func (config appConfig) InternalGitLabServerURL() string {
- return config.InternalGitLabServer
-}
-
-// GitlabClientSecret returns GitLab server access token.
-func (config appConfig) GitlabAPISecret() []byte {
- return config.GitLabAPISecretKey
-}
-
-func (config appConfig) GitlabClientConnectionTimeout() time.Duration {
- return config.GitlabClientHTTPTimeout
-}
-
-func (config appConfig) GitlabJWTTokenExpiry() time.Duration {
- return config.GitlabJWTTokenExpiration
-}
-
-func (config appConfig) DomainConfigSource() string {
- return config.DomainConfigurationSource
-}