Show both baseURL and bind address in `hugo server` output
authorAnthony Fok <foka@debian.org>
Wed, 16 Sep 2015 05:12:01 +0000 (23:12 -0600)
committerAnthony Fok <foka@debian.org>
Wed, 16 Sep 2015 05:12:01 +0000 (23:12 -0600)
Fixes #1426

commands/server.go

index 64bb16259dd62929e6200bf81f6d0ced55cc5b4b..66cd9f7804f3d8e5e22ac4e163672cf6f58ce68c 100644 (file)
@@ -138,9 +138,8 @@ func serve(port int) {
                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))