mirror of https://github.com/portainer/portainer
20 lines
536 B
Go
20 lines
536 B
Go
// +build !windows
|
|
|
|
package cli
|
|
|
|
const (
|
|
defaultBindAddress = ":9000"
|
|
defaultDataDirectory = "/data"
|
|
defaultAssetsDirectory = "."
|
|
defaultNoAuth = "false"
|
|
defaultNoAnalytics = "false"
|
|
defaultTLSVerify = "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"
|
|
)
|