changed port to 80

This commit is contained in:
hook-lord 2024-09-13 22:48:04 +02:00
parent 87fe23fc18
commit 0181b91356

View File

@ -46,6 +46,6 @@ func main() {
http.HandleFunc("/events", SSEHandler) http.HandleFunc("/events", SSEHandler)
http.HandleFunc("/trigger", TriggerHandler) http.HandleFunc("/trigger", TriggerHandler)
log.Println("Server running on port 8080") log.Println("Server running on port 80")
log.Fatal(http.ListenAndServe(":8080", nil)) log.Fatal(http.ListenAndServe(":80", nil))
} }