From 89ec54ec66b0285017c01cacdbb45df8f517b801 Mon Sep 17 00:00:00 2001 From: CornierKhan1 Date: Fri, 7 Sep 2018 08:35:58 +1000 Subject: [PATCH] Fixed port from 8000 to just 80(tm) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index deb49a9..d8d8250 100644 --- a/main.go +++ b/main.go @@ -112,7 +112,7 @@ type UNR struct { func main() { fmt.Println("Starting HTTP connection (Port 8000)...") http.HandleFunc("/", handler) // each request calls handler - log.Fatal(http.ListenAndServe(":8000", nil)) + log.Fatal(http.ListenAndServe(":80", nil)) } func handler(w http.ResponseWriter, r *http.Request) {