Update default listener address
Signed-off-by: AKP <tom@tdpain.net>
This commit is contained in:
parent
ab6ea72931
commit
f3c3dd1e7d
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ func Load() (*Config, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
conf := new(Config)
|
conf := new(Config)
|
||||||
conf.Ingest.Address = asString(cl.withDefault("ingest.address", "127.0.0.1:7500"))
|
conf.Ingest.Address = asString(cl.withDefault("ingest.address", "0.0.0.0:7500"))
|
||||||
conf.Database.DSN = asString(cl.withDefault("database.dsn", "analytics.db"))
|
conf.Database.DSN = asString(cl.withDefault("database.dsn", "analytics.db"))
|
||||||
|
|
||||||
return conf, nil
|
return conf, nil
|
||||||
|
|
Reference in a new issue