2017-01-04 06:50:25 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package cli
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultBindAddress = ":9000"
|
|
|
|
defaultDataDirectory = "/data"
|
2017-10-26 09:17:45 +00:00
|
|
|
defaultAssetsDirectory = "./"
|
2017-02-01 09:13:48 +00:00
|
|
|
defaultNoAuth = "false"
|
2017-02-13 23:37:37 +00:00
|
|
|
defaultNoAnalytics = "false"
|
2018-05-19 14:25:11 +00:00
|
|
|
defaultTLS = "false"
|
2018-05-06 07:15:57 +00:00
|
|
|
defaultTLSSkipVerify = "false"
|
2017-01-04 06:50:25 +00:00
|
|
|
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"
|
2018-07-03 18:31:02 +00:00
|
|
|
defaultTemplateFile = "/templates.json"
|
2017-01-04 06:50:25 +00:00
|
|
|
)
|