summaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'server.go')
-rw-r--r--server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go
index 4a685f2..891a7b9 100644
--- a/server.go
+++ b/server.go
@@ -19,7 +19,7 @@ func setupRoutes() {
func runServer() {
setupRoutes()
- address := config.Http.Host + ":" + config.Http.Port
+ address := config.Host + ":" + config.Port
log.Println("Serving content at 'http://" + address + "'.")
log.Fatal(http.ListenAndServe(address, nil))
}