Parcourir la source

listen on all ips

Darien Raymond il y a 8 ans
Parent
commit
bf64c449de
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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)
 	}()
 }