diff --git a/hscontrol/app.go b/hscontrol/app.go index 8bf923fc..4ce98719 100644 --- a/hscontrol/app.go +++ b/hscontrol/app.go @@ -477,6 +477,7 @@ func (h *Headscale) createRouter(grpcMux *grpcRuntime.ServeMux) *mux.Router { apiRouter.Use(h.httpAuthenticationMiddleware) apiRouter.PathPrefix("/v1/").HandlerFunc(grpcMux.ServeHTTP) router.HandleFunc("/favicon.ico", FaviconHandler) + router.PathPrefix("/").HandlerFunc(BlankHandler) return router }