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"))))
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())