ref: bef0f281d1d9a6f58c0b50140ddb2c4e6991bc95
parent: feba35cd1f62dd330ac4b1da19d758d2b6c36a87
author: bep <[email protected]>
date: Sat May 9 04:02:52 EDT 2015
Make sure that complete server URL is logged on startup Fixes #1113
--- a/commands/server.go
+++ b/commands/server.go
@@ -134,7 +134,7 @@
http.Handle(u.Path, http.StripPrefix(u.Path, fileserver))
}
- u.Host = serverInterface
+ u.Host = net.JoinHostPort(serverInterface, strconv.Itoa(serverPort))
u.Scheme = "http"
jww.FEEDBACK.Printf("Web Server is available at %s\n", u.String())
fmt.Println("Press Ctrl+C to stop")