diff options
author | Emile <hanemile@protonmail.com> | 2019-02-24 18:08:02 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-02-24 18:08:02 +0100 |
commit | e6bd73713ee5dbb1afc9dc1ca6d5e5458f74b6a7 (patch) | |
tree | ac5c0695a6b8cbaa90ecd41f79888139ff716875 | |
parent | 31dc68b64af8c30098df96d376ed509e99f73224 (diff) |
set the port the application is running on to port 80
-rw-r--r-- | src/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
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("./")))) } |