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)) }