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) {