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:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-04-23 18:00:24 +0300
committerNick Thomas <nick@gitlab.com>2018-04-23 18:00:24 +0300
commitfd06fc02844a15bfaa78502f6b7c36588f66cd42 (patch)
tree65bf11c76d4ab6b09f7cbf9dee088e980bcec7c9 /app_config.go
parentc2fb2a8f8aa79e390b920f7b7c061e2951e69566 (diff)
Add gRPC admin health check
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go13
1 files changed, 9 insertions, 4 deletions
diff --git a/app_config.go b/app_config.go
index 34b01e15..f2aa90cd 100644
--- a/app_config.go
+++ b/app_config.go
@@ -6,11 +6,16 @@ type appConfig struct {
ArtifactsServerTimeout int
RootCertificate []byte
RootKey []byte
+ AdminCertificate []byte
+ AdminKey []byte
+ AdminToken []byte
- ListenHTTP []uintptr
- ListenHTTPS []uintptr
- ListenProxy []uintptr
- ListenMetrics uintptr
+ ListenHTTP []uintptr
+ ListenHTTPS []uintptr
+ ListenProxy []uintptr
+ ListenMetrics uintptr
+ ListenAdminUnix uintptr
+ ListenAdminHTTPS uintptr
HTTP2 bool
RedirectHTTP bool