2017-01-04 06:50:25 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultBindAddress = ":9000"
|
2017-01-31 19:56:07 +00:00
|
|
|
defaultDataDirectory = "C:\\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-31 19:56:07 +00:00
|
|
|
defaultTLSCACertPath = "C:\\certs\\ca.pem"
|
|
|
|
defaultTLSCertPath = "C:\\certs\\cert.pem"
|
|
|
|
defaultTLSKeyPath = "C:\\certs\\key.pem"
|
2017-04-25 09:51:22 +00:00
|
|
|
defaultSSL = "false"
|
|
|
|
defaultSSLCertPath = "C:\\certs\\portainer.crt"
|
|
|
|
defaultSSLKeyPath = "C:\\certs\\portainer.key"
|
2017-02-06 05:29:34 +00:00
|
|
|
defaultSyncInterval = "60s"
|
2017-01-04 06:50:25 +00:00
|
|
|
)
|