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-16 19:37:10 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 19:37:10 +0300
commit9747e5820ce129895e95355b254d110cb39496a4 (patch)
tree15de284bad0b0344738dcfe7fe57596825e2b661 /app_config.go
parenta9b41da7fc5a07eae0a72dc7e59f323a73e74a54 (diff)
Fix small bugs
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/app_config.go b/app_config.go
index b7ba56fe..f0f30d8c 100644
--- a/app_config.go
+++ b/app_config.go
@@ -1,15 +1,15 @@
package main
type appConfig struct {
- Domain 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
}