2017-01-04 19:50:25 +13:00
|
|
|
package cli
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultBindAddress = ":9000"
|
2017-02-01 08:56:07 +13:00
|
|
|
defaultDataDirectory = "C:\\data"
|
2017-10-26 11:17:45 +02:00
|
|
|
defaultAssetsDirectory = "./"
|
2017-02-01 22:13:48 +13:00
|
|
|
defaultNoAuth = "false"
|
2017-02-14 12:37:37 +13:00
|
|
|
defaultNoAnalytics = "false"
|
2018-05-19 16:25:11 +02:00
|
|
|
defaultTLS = "false"
|
2018-05-06 09:15:57 +02:00
|
|
|
defaultTLSSkipVerify = "false"
|
2017-02-01 08:56:07 +13:00
|
|
|
defaultTLSCACertPath = "C:\\certs\\ca.pem"
|
|
|
|
defaultTLSCertPath = "C:\\certs\\cert.pem"
|
|
|
|
defaultTLSKeyPath = "C:\\certs\\key.pem"
|
2017-04-25 11:51:22 +02:00
|
|
|
defaultSSL = "false"
|
|
|
|
defaultSSLCertPath = "C:\\certs\\portainer.crt"
|
|
|
|
defaultSSLKeyPath = "C:\\certs\\portainer.key"
|
2017-02-06 18:29:34 +13:00
|
|
|
defaultSyncInterval = "60s"
|
2017-01-04 19:50:25 +13:00
|
|
|
)
|