Fix log spam: move health endpoint before logger (#44)

Co-authored-by: lewisakura <lewi@lewisakura.moe>
This commit is contained in:
Fesaa
2024-11-29 15:50:09 +01:00
committed by GitHub
parent faa4c772f2
commit a3d39f4d64
+7 -4
View File
@@ -109,8 +109,8 @@ func main() {
}
app := fiber.New(fiber.Config{
ProxyHeader: os.Getenv("PROXY_HEADER"),
})
ProxyHeader: os.Getenv("PROXY_HEADER"),
})
g.RDB = redis.NewClient(&redis.Options{
Addr: g.REDIS_URI,
@@ -144,6 +144,11 @@ func main() {
ExposeHeaders: "ETag",
AllowOrigins: "https://discord.com,https://ptb.discord.com,https://canary.discord.com,https://discordapp.com,https://ptb.discordapp.com,https://canary.discordapp.com",
}))
// Add the docker health endpoint before the logger middleware, such that
// it doesn't spam the logs full with it
app.Get("/v1", routes.GET)
app.Use(logger.New())
// #region settings
@@ -164,8 +169,6 @@ func main() {
app.Delete("/v1", requireAuth, routes.DELETE)
// #endregion
app.Get("/v1", routes.GET)
app.Get("/", func(c *fiber.Ctx) error {
return c.Redirect(g.ROOT_REDIRECT, 303)
})