19 lines
325 B
TOML
19 lines
325 B
TOML
|
# SVCi Configuration
|
||
|
|
||
|
# InfluxDB to save metrics
|
||
|
[influx]
|
||
|
url = "http://localhost:8086"
|
||
|
username = "root"
|
||
|
password = ""
|
||
|
database = "svci"
|
||
|
|
||
|
# SVC on our primary site
|
||
|
[svc.site1]
|
||
|
url = "https://10.10.10.12:7443"
|
||
|
username = "superuser"
|
||
|
password = "password"
|
||
|
refresh = 10
|
||
|
discover = 120
|
||
|
trust = true # Ignore SSL cert. errors
|
||
|
|