2017-01-04 06:50:25 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package cli
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultBindAddress = ":9000"
|
|
|
|
defaultDataDirectory = "/data"
|
|
|
|
defaultAssetsDirectory = "."
|
2017-02-01 09:13:48 +00:00
|
|
|
defaultNoAuth = "false"
|
2017-02-13 23:37:37 +00:00
|
|
|
defaultNoAnalytics = "false"
|
2017-01-04 06:50:25 +00:00
|
|
|
defaultTLSVerify = "false"
|
|
|
|
defaultTLSCACertPath = "/certs/ca.pem"
|
|
|
|
defaultTLSCertPath = "/certs/cert.pem"
|
|
|
|
defaultTLSKeyPath = "/certs/key.pem"
|
2017-04-25 09:51:22 +00:00
|
|
|
defaultSSL = "false"
|
|
|
|
defaultSSLCertPath = "/certs/portainer.crt"
|
|
|
|
defaultSSLKeyPath = "/certs/portainer.key"
|
2017-02-06 05:29:34 +00:00
|
|
|
defaultSyncInterval = "60s"
|
2017-01-04 06:50:25 +00:00
|
|
|
)
|