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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-02-11 21:37:36 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-11 21:37:36 +0300
commit944e6bbde62c266aa3d50f0943a2716ac8d5df4b (patch)
tree1ae42214adc19ba1f536e3f17d794bbec667bfc4 /app_config.go
parent8166163d39f1f972b2bea2817bdc78cc0777faa3 (diff)
Chdir first (always)
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go13
1 files changed, 6 insertions, 7 deletions
diff --git a/app_config.go b/app_config.go
index 6c96a59b..b7ba56fe 100644
--- a/app_config.go
+++ b/app_config.go
@@ -1,16 +1,15 @@
package main
type appConfig struct {
- Domain string
- RootDir string
+ Domain string
RootCertificate []byte
RootKey []byte
- ListenHTTP uintptr
- ListenHTTPS uintptr
- listenProxy uintptr
+ ListenHTTP uintptr
+ ListenHTTPS uintptr
+ listenProxy uintptr
- HTTP2 bool
- RedirectHTTP bool
+ HTTP2 bool
+ RedirectHTTP bool
}