From e6bd73713ee5dbb1afc9dc1ca6d5e5458f74b6a7 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 24 Feb 2019 18:08:02 +0100 Subject: set the port the application is running on to port 80 --- src/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.go b/src/main.go index 9e01b74..0808608 100644 --- a/src/main.go +++ b/src/main.go @@ -3,5 +3,5 @@ package main import "net/http" func main() { - panic(http.ListenAndServe(":8081", http.FileServer(http.Dir("./")))) + panic(http.ListenAndServe(":80", http.FileServer(http.Dir("./")))) } -- cgit 1.4.1