diff --git a/go/core/core.go b/go/core/core.go index 66d1d7ef86bcff7458ab7527762419bf69454a1e..04d8f5d8d93a9f22cd828ab4b9be07b2dfc73c19 100755 --- a/go/core/core.go +++ b/go/core/core.go @@ -36,7 +36,7 @@ func main() { http.HandleFunc("/surprise/", surprise) http.HandleFunc("/settings/", settings) http.HandleFunc("/settings", settings) - log.Fatal(http.ListenAndServe("0.0.0.0:8080", nil)) //set IP to 127.0.0.1 if reverse proxy is on the same machine + log.Fatal(http.ListenAndServe("0.0.0.0:8080", nil)) //set IP to localhost if reverse proxy is on the same machine } //https://golang.org/pkg/net/http/#Request