ref: b29ca44c6e32dcf244f945e3a52d6cf57495aafd
parent: d984dde2f5b005d1b82da4ca758797b532567fe0
author: Anthony Fok <foka@debian.org>
date: Tue Sep 15 19:12:01 EDT 2015
Show both baseURL and bind address in `hugo server` output Fixes #1426
--- a/commands/server.go
+++ b/commands/server.go
@@ -138,9 +138,8 @@
http.Handle(u.Path, http.StripPrefix(u.Path, fileserver))
}
- u.Host = net.JoinHostPort(serverInterface, strconv.Itoa(serverPort))
u.Scheme = "http"
- jww.FEEDBACK.Printf("Web Server is available at %s\n", u.String())
+ jww.FEEDBACK.Printf("Web Server is available at %s (bind address %s)\n", u.String(), serverInterface)
fmt.Println("Press Ctrl+C to stop")
endpoint := net.JoinHostPort(serverInterface, strconv.Itoa(port))
--
⑨