From fb55a302f9037ee81052ec0e5d1cfd253ab21f86 Mon Sep 17 00:00:00 2001 From: Joerg Lehmann Date: Tue, 27 Dec 2022 13:58:23 +0100 Subject: [PATCH] make it ready for containers... --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index b57175a..bbc9af0 100644 --- a/main.go +++ b/main.go @@ -102,6 +102,6 @@ func main() { http.HandleFunc("/checknodes", checkNodesHandler) logit("Starting Web Application...") - http.ListenAndServe("127.0.0.1:4000", nil) + http.ListenAndServe(":4000", nil) logit("Terminating Web Application...") }