Skip to content
Snippets Groups Projects
config.go 401 B
Newer Older
	GRPCServiceEnabled      bool
	AllowBadFilePermissions bool
	RemoteAddress           string
	KeysDirectory           string
}

func DefaultKeysConfig() *KeysConfig {
	return &KeysConfig{
		// Default Monax keys port
		GRPCServiceEnabled:      true,
		AllowBadFilePermissions: false,
		RemoteAddress:           "",
		KeysDirectory:           DefaultKeysDir,