diff --git a/cmd/root.go b/cmd/root.go index 21c40bec..33fb07c4 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -180,9 +180,8 @@ user created with the credentials from options "username" and "password".`, checkErr(err) defer listener.Close() - if strings.Contains(adr, "0.0.0.0") { - log.Println("Listening on 127.0.0.1:" + server.Port) + log.Println("Listening on 0.0.0.0:" + server.Port +". You can access the FileBrowser at 127.0.0.1:" + server.Port) } else { log.Println("Listening on", listener.Addr().String()) }