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

common.go « x509 « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ca72d208af0638adbb39c738d621b4dad2ca4ac (plain)
1
2
3
4
5
6
7
8
package x509

// SSLCertDir and SSLCertFile are the environment variables that specify the
// location to add system root certificates.
const (
	SSLCertDir  = "SSL_CERT_DIR"
	SSLCertFile = "SSL_CERT_FILE"
)