From 0181b91356c209923e3f1c8b87fcac4459f681ed Mon Sep 17 00:00:00 2001 From: hook-lord Date: Fri, 13 Sep 2024 22:48:04 +0200 Subject: [PATCH] changed port to 80 --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 3cc75a1..b9e6ba4 100644 --- a/main.go +++ b/main.go @@ -46,6 +46,6 @@ func main() { http.HandleFunc("/events", SSEHandler) http.HandleFunc("/trigger", TriggerHandler) - log.Println("Server running on port 8080") - log.Fatal(http.ListenAndServe(":8080", nil)) + log.Println("Server running on port 80") + log.Fatal(http.ListenAndServe(":80", nil)) }