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: d007ca397161bac403a3a82dea0cd25de4e8cf96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

type appConfig struct {
	Domain  string
	RootDir string

	RootCertificate []byte
	RootKey         []byte

	ListenHTTP  uintptr
	ListenHTTPS uintptr
	listenProxy uintptr

	HTTP2     bool
	ServeHTTP bool
}