Skip to content

Commit

Permalink
Run on 0.0.0.0 instead of localhost (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomshutt authored Aug 11, 2022
1 parent 2ee6229 commit c6023f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/http-server/http-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func main() {
return
}

listen := fmt.Sprintf("localhost:%d", *port)
listen := fmt.Sprintf("0.0.0.0:%d", *port)
router := StartCatalystAPIRouter()

stdlog.Println("Starting Catalyst API version", config.Version, "listening on", listen)
Expand Down

0 comments on commit c6023f7

Please sign in to comment.