From e864164257ae4e7d9ff0dc81cf440dda90ed1158 Mon Sep 17 00:00:00 2001 From: Nikolay Govorov Date: Mon, 30 Mar 2026 06:02:30 +0100 Subject: Just a index.html --- cmd/mirumd/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/mirumd/main.go b/cmd/mirumd/main.go index 1960fc4..19afd6a 100644 --- a/cmd/mirumd/main.go +++ b/cmd/mirumd/main.go @@ -242,6 +242,10 @@ func main() { } mux := http.NewServeMux() + mux.HandleFunc("GET /", func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "text/html; charset=utf-8") + fmt.Fprint(w, `Mirum

Mirum

CI server is running.

`) + }) mux.HandleFunc("POST /webhook", func(w http.ResponseWriter, r *http.Request) { body, err := io.ReadAll(r.Body) if err != nil { -- Gilti