Add flag to change listen address

This commit is contained in:
Fabian Reinartz 2015-09-30 17:24:06 +02:00
parent bb057872a7
commit 957d108e67
1 changed files with 3 additions and 2 deletions

View File

@ -31,6 +31,7 @@ import (
var (
configFile = flag.String("config.file", "config.yml", "The configuration file")
listenAddress = flag.String("web.listen-address", ":9093", "Address to listen on for the web interface and API.")
)
func main() {
@ -90,7 +91,7 @@ func main() {
NewAPI(router.WithPrefix("/api"), alerts, silences)
go http.ListenAndServe(":9091", router)
go http.ListenAndServe(*listenAddress, router)
var (
hup = make(chan os.Signal)