fixed server reporting Web Server is available at https://localhost:1313 when server...
authorMarcelo Glezer <mg@tekii.com.ar>
Fri, 17 Oct 2014 16:32:16 +0000 (13:32 -0300)
committerspf13 <steve.francia@gmail.com>
Sun, 2 Nov 2014 02:33:43 +0000 (22:33 -0400)
commands/server.go

index 6b62dca70d1cf084897513d4f01dcc9796b71565..921b9fbdb2415c61b6c2516e9b6e29ab4050ec7b 100644 (file)
@@ -110,8 +110,6 @@ func server(cmd *cobra.Command, args []string) {
 
 func serve(port int) {
        jww.FEEDBACK.Println("Serving pages from " + helpers.AbsPathify(viper.GetString("PublishDir")))
-       jww.FEEDBACK.Printf("Web Server is available at %s\n", viper.GetString("BaseUrl"))
-       fmt.Println("Press ctrl+c to stop")
 
        httpFs := &afero.HttpFs{SourceFs: hugofs.DestinationFS}
        fileserver := http.FileServer(httpFs.Dir(helpers.AbsPathify(viper.GetString("PublishDir"))))
@@ -126,6 +124,10 @@ func serve(port int) {
                http.Handle(u.Path+"/", http.StripPrefix(u.Path+"/", fileserver))
        }
 
+       u.Scheme = "http"
+       jww.FEEDBACK.Printf("Web Server is available at %s\n", u.String())
+       fmt.Println("Press ctrl+c to stop")
+
        err = http.ListenAndServe(":"+strconv.Itoa(port), nil)
        if err != nil {
                jww.ERROR.Printf("Error: %s\n", err.Error())