Skip to content

Commit

Permalink
fix: change port of go server to 80
Browse files Browse the repository at this point in the history
  • Loading branch information
brushknight committed May 16, 2021
1 parent c436ebe commit 4f06e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ func main() {
muxRouter.HandleFunc("/api/v1/telemetry", recordTelemetry).Methods("POST")
muxRouter.HandleFunc("/api/v1/telemetry", printTelemetry).Methods("GET")

http.ListenAndServe(":8090", muxRouter)
http.ListenAndServe(":80", muxRouter)
}

0 comments on commit 4f06e48

Please sign in to comment.