mirror of https://github.com/portainer/portainer
21 lines
571 B
Go
21 lines
571 B
Go
// +build !windows
|
|
|
|
package cli
|
|
|
|
const (
|
|
defaultBindAddress = ":9000"
|
|
defaultDataDirectory = "/data"
|
|
defaultAssetsDirectory = "./"
|
|
defaultNoAuth = "false"
|
|
defaultNoAnalytics = "false"
|
|
defaultTLS = "false"
|
|
defaultTLSSkipVerify = "false"
|
|
defaultTLSCACertPath = "/certs/ca.pem"
|
|
defaultTLSCertPath = "/certs/cert.pem"
|
|
defaultTLSKeyPath = "/certs/key.pem"
|
|
defaultSSL = "false"
|
|
defaultSSLCertPath = "/certs/portainer.crt"
|
|
defaultSSLKeyPath = "/certs/portainer.key"
|
|
defaultSyncInterval = "60s"
|
|
)
|