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:
authorJ. Shuster <joshuagregoryshuster@gmail.com>2017-09-08 11:58:42 +0300
committerNick Thomas <nick@gitlab.com>2017-09-08 11:58:42 +0300
commit0a144bc6055b41fac726fdc6eeaa7150f622bd20 (patch)
tree9ed2a4dbecbd8146245ae8fa609cd9f54d038bf6 /app_config.go
parent0173d4e6b6b17443155d121a9098d0e742b9c4e3 (diff)
Add an artifacts proxy to GitLab Pages
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/app_config.go b/app_config.go
index e45dda24..dd47ed01 100644
--- a/app_config.go
+++ b/app_config.go
@@ -1,10 +1,11 @@
package main
type appConfig struct {
- Domain string
-
- RootCertificate []byte
- RootKey []byte
+ Domain string
+ ArtifactsServer string
+ ArtifactsServerTimeout int
+ RootCertificate []byte
+ RootKey []byte
ListenHTTP []uintptr
ListenHTTPS []uintptr