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

app_config.go - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34b01e15dafeeb4183e7f53bcf8d9694f3d1c912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main

type appConfig struct {
	Domain                 string
	ArtifactsServer        string
	ArtifactsServerTimeout int
	RootCertificate        []byte
	RootKey                []byte

	ListenHTTP    []uintptr
	ListenHTTPS   []uintptr
	ListenProxy   []uintptr
	ListenMetrics uintptr

	HTTP2        bool
	RedirectHTTP bool
	StatusPath   string

	DisableCrossOriginRequests bool

	LogFormat  string
	LogVerbose bool
}