properly use non-localhost BaseUrl in server command
authorMatt Way <git@mway.me>
Fri, 22 Nov 2013 05:28:05 +0000 (00:28 -0500)
committerspf13 <steve.francia@gmail.com>
Mon, 16 Dec 2013 22:39:59 +0000 (17:39 -0500)
commands/server.go

index a933117595f9cd664f0a1681511ab096a39a286f..73f23609a5745fa9b89aa3271da5b88047c8207b 100644 (file)
@@ -18,6 +18,7 @@ import (
        "github.com/spf13/cobra"
        "net/http"
        "strconv"
+       "strings"
 )
 
 var serverPort int
@@ -40,11 +41,16 @@ Serve them up.`,
 func server(cmd *cobra.Command, args []string) {
        InitializeConfig()
 
-       // Unless command line overrides, we use localhost for the server
        if BaseUrl == "" {
-               Config.BaseUrl = "http://localhost:" + strconv.Itoa(serverPort)
+               BaseUrl = "http://localhost"
        }
 
+       if !strings.HasPrefix(BaseUrl, "http://") {
+               BaseUrl = "http://" + BaseUrl
+       }
+
+       Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + ":" + strconv.Itoa(serverPort)
+
        build(serverWatch)
 
        // Watch runs its own server as part of the routine
@@ -64,7 +70,7 @@ func serve(port int) {
                fmt.Println("Serving pages from " + Config.GetAbsPath(Config.PublishDir))
        }
 
-       fmt.Printf("Web Server is available at http://localhost:%v\n", port)
+       fmt.Printf("Web server is available at %s\n", Config.BaseUrl)
        fmt.Println("Press ctrl+c to stop")
        panic(http.ListenAndServe(":"+strconv.Itoa(port), http.FileServer(http.Dir(Config.GetAbsPath(Config.PublishDir)))))
 }