about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-02-26 14:16:11 +0100
committerEmile <hanemile@protonmail.com>2019-02-26 14:16:11 +0100
commit237bf39cc75013ab1278e80a92c3647e4e958b06 (patch)
tree96ba85d7cedba231d4e3c01f43c56793bdb1ce96 /main.go
parent362d24ac12ef71242a089ae6f0587b5367b5c882 (diff)
preparing docker-swarm deployment
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))
 }