Skip to content

Commit

Permalink
Merge pull request #167 from synyx/change_default_binds
Browse files Browse the repository at this point in the history
Bind to all interfaces as default
  • Loading branch information
BuJo authored Dec 19, 2023
2 parents 32e3c23 + 0e50edc commit 350f870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
var fVersion = flag.Bool("version", false, "Print version")
var fInstance = flag.String("instance", "0", "Running instance identifier")
var fEnvironment = flag.String("environment", "test", "(test, stage, prod)")
var fAddr = flag.String("addr", "127.0.0.1:8988", "Bind web application port")
var fAddr = flag.String("addr", "0.0.0.0:8988", "Bind web application port")
var fMgmtAddr = flag.String("mgmtAddr", "127.0.0.1:8987", "Bind management port")
var fConfigFile = flag.String("conf", "/etc/tuwat.toml", "Configuration file")
var fDashboardDir = flag.String("dashboards", "/etc/tuwat.d", "Dashboard Configuration Directory")
Expand Down

0 comments on commit 350f870

Please sign in to comment.