about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index bf1ce49..a799956 100644
--- a/main.go
+++ b/main.go
@@ -79,6 +79,6 @@ func main() {
 	router.HandleFunc("/", Index).Methods("GET")
 	router.HandleFunc("/NFW", NFW).Methods("GET")
 
-	log.Println("Starting the service on port 80")
-	log.Fatal(http.ListenAndServe(":80", router))
+	log.Println("Starting the service on port localhost:8081")
+	log.Fatal(http.ListenAndServe(":8081", router))
 }