From 9d4c6916a672f31c4537497c6005425b745701ad Mon Sep 17 00:00:00 2001 From: Settel Date: Sun, 4 Jun 2023 11:22:49 +0200 Subject: [PATCH] bugfix: bind to all interfaces by default (needed for Podman/Docker) --- server/src/applicationConfig/appconfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/applicationConfig/appconfig.go b/server/src/applicationConfig/appconfig.go index d18d6e4..f529255 100644 --- a/server/src/applicationConfig/appconfig.go +++ b/server/src/applicationConfig/appconfig.go @@ -14,7 +14,7 @@ type ApplicationConfig struct { func NewApplicationConfig() ApplicationConfig { flagVerbosePtr := flag.Bool("v", false, "log debug messages, too") flagQuietPtr := flag.Bool("q", false, "be quiet; warning and error messages only") - bindStringPtr := flag.String("b", "localhost:32039", "interface and port to bind to") + bindStringPtr := flag.String("b", ":32039", "interface and port to bind to") flag.Parse() log.SetLoglevel(log.LOG_INFO)