From 25c5e4c26484633d1277d320836800c134c1b781 Mon Sep 17 00:00:00 2001 From: gregchalmers Date: Mon, 8 Mar 2021 22:51:19 -0800 Subject: [PATCH] fixed host=="" to "0.0.0.0" from "127.0.0.1" --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index 2507b2d9..7412cf29 100644 --- a/app.go +++ b/app.go @@ -876,7 +876,7 @@ func (app *App) startupMessage(addr string, tls bool, pids string) { host, port := parseAddr(addr) if host == "" { - host = "127.0.0.1" + host = "0.0.0.0" } scheme := "http"