Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.go « domain « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040b2279af2a6646d8d95f190d5ff3533af87e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
package domain

// ProjectConfig holds a custom project domain configuration
type ProjectConfig struct {
	DomainName    string
	Certificate   string
	Key           string
	HTTPSOnly     bool
	ProjectID     uint64
	AccessControl bool
}