summaryrefslogtreecommitdiff
path: root/pkg/config/config.go
blob: c4961ab9dcd0b62ad802d56b05d7a6dc2411679e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package config

var (
	Provider        = ""
	ProviderName    = ""
	ApplicationName = ""
	BinaryName      = ""
	Auth            = ""
	AuthEmptyPass   = false
	DonateURL       = ""
	AskForDonations = true
	HelpURL         = ""
	TosURL          = ""
	APIURL          = ""
	GeolocationAPI  = ""
)

var Version string

/*

CaCert : a string containing a representation of the provider CA, used to
        sign the webapp and openvpn certificates. should be placed in
        config/[provider]-ca.crt

*/
var CaCert = []byte("")