mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-21 01:23:51 +00:00
If baseurl is set then print that on the command line, else leave as default of localhost
Conflicts: commands/server.go
This commit is contained in:
parent
8b84156f87
commit
e5aa08ff0c
1 changed files with 6 additions and 1 deletions
|
@ -70,7 +70,12 @@ func serve(port int) {
|
||||||
fmt.Println("Serving pages from " + Config.GetAbsPath(Config.PublishDir))
|
fmt.Println("Serving pages from " + Config.GetAbsPath(Config.PublishDir))
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("Web server is available at %s\n", Config.BaseUrl)
|
if BaseUrl == "" {
|
||||||
|
fmt.Printf("Web Server is available at %s\n", Config.BaseUrl)
|
||||||
|
} else {
|
||||||
|
fmt.Printf("Web Server is available at http://localhost:%v\n", port)
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Println("Press ctrl+c to stop")
|
fmt.Println("Press ctrl+c to stop")
|
||||||
panic(http.ListenAndServe(":"+strconv.Itoa(port), http.FileServer(http.Dir(Config.GetAbsPath(Config.PublishDir)))))
|
panic(http.ListenAndServe(":"+strconv.Itoa(port), http.FileServer(http.Dir(Config.GetAbsPath(Config.PublishDir)))))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue