소스 검색

listen on all ips

Darien Raymond 8 년 전
부모
커밋
bf64c449de
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/distro/debug/debug.go

+ 1 - 1
main/distro/debug/debug.go

@@ -5,6 +5,6 @@ import "net/http"
 
 func init() {
 	go func() {
-		http.ListenAndServe("localhost:6060", nil)
+		http.ListenAndServe(":6060", nil)
 	}()
 }