Serving on port 80

This commit is contained in:
Manu Mtz-Almeida 2015-05-14 04:43:39 +02:00
parent e7adcaf591
commit 58ceb244e5
1 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,5 @@ func StartGin() {
router.POST("/room-post/:roomid", roomPOST) router.POST("/room-post/:roomid", roomPOST)
router.GET("/stream/:roomid", streamRoom) router.GET("/stream/:roomid", streamRoom)
router.Run("127.0.0.1:8080") router.Run(":80")
} }