22 lines
500 B
Go
22 lines
500 B
Go
package admin
|
|
|
|
const (
|
|
// DefaultBindAddress is the default bind address for the HTTP server.
|
|
DefaultBindAddress = ":8083"
|
|
)
|
|
|
|
type Config struct {
|
|
Enabled bool `toml:"enabled"`
|
|
BindAddress string `toml:"bind-address"`
|
|
HttpsEnabled bool `toml:"https-enabled"`
|
|
HttpsCertificate string `toml:"https-certificate"`
|
|
}
|
|
|
|
func NewConfig() Config {
|
|
return Config{
|
|
BindAddress: DefaultBindAddress,
|
|
HttpsEnabled: false,
|
|
HttpsCertificate: "/etc/ssl/influxdb.pem",
|
|
}
|
|
}
|