about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-02-23 21:14:41 +0100
committerEmile <hanemile@protonmail.com>2019-02-23 21:14:41 +0100
commit85878612e4fed8109e4eb75d4f0fbc3be88a1cec (patch)
tree60e4cb94ea0bcc286323bd8da0d82097996bda24
parent58539e45e449e3b60cb9fe60084ca64dd4072994 (diff)
:fix: updated the port number
-rw-r--r--src/main.go2
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("./"))))
 }