Browse Source

Serving on port 80

Manu Mtz-Almeida 10 years ago
parent
commit
58ceb244e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/realtime-advanced/main.go

+ 1 - 1
examples/realtime-advanced/main.go

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