From f914262ea59cca926c97e3724136b2cfbc8a04e9 Mon Sep 17 00:00:00 2001 From: hunterlong Date: Tue, 21 Apr 2020 22:41:47 -0700 Subject: [PATCH] docker build, static golang builds --- handlers/routes.go | 1 - 1 file changed, 1 deletion(-) diff --git a/handlers/routes.go b/handlers/routes.go index a8cd66a7..e5f820d3 100644 --- a/handlers/routes.go +++ b/handlers/routes.go @@ -157,7 +157,6 @@ func Router() *mux.Router { api.Handle("/api/oauth/{provider}", http.HandlerFunc(oauthHandler)) r.Handle("/.well-known/", http.StripPrefix("/.well-known/", http.FileServer(http.Dir(dir+"/.well-known")))) r.NotFoundHandler = http.HandlerFunc(error404Handler) - r.Handle("/", http.HandlerFunc(indexHandler)) return r }