mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 23:39:41 +02:00
13 lines
403 B
Go
13 lines
403 B
Go
|
package cli
|
||
|
|
||
|
const (
|
||
|
defaultBindAddress = ":9000"
|
||
|
defaultDataDirectory = "C:\\data"
|
||
|
defaultAssetsDirectory = "."
|
||
|
defaultTemplatesURL = "https://raw.githubusercontent.com/portainer/templates/master/templates.json"
|
||
|
defaultTLSVerify = "false"
|
||
|
defaultTLSCACertPath = "C:\\certs\\ca.pem"
|
||
|
defaultTLSCertPath = "C:\\certs\\cert.pem"
|
||
|
defaultTLSKeyPath = "C:\\certs\\key.pem"
|
||
|
)
|