From 237bf39cc75013ab1278e80a92c3647e4e958b06 Mon Sep 17 00:00:00 2001 From: Emile Date: Tue, 26 Feb 2019 14:16:11 +0100 Subject: preparing docker-swarm deployment --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.go') 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)) } -- cgit 1.4.1