mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 06:12:33 +03:00
change limiter enabling
This commit is contained in:
parent
0853d87fc3
commit
79c350c2fb
4
main.go
4
main.go
@ -49,15 +49,17 @@ func main() {
|
||||
app := fiber.New(fiber.Config{Views: engine})
|
||||
|
||||
app.Use(recover.New())
|
||||
if config.App.IsRateLimiterEnabled {
|
||||
app.Use(limiter.New(limiter.Config{
|
||||
Next: func(c *fiber.Ctx) bool {
|
||||
isDev := c.IsFromLocal()
|
||||
path := c.Path()
|
||||
isRequestForStatic := strings.Contains(path, "/static") || strings.Contains(path, "/uploads") || strings.Contains(path, "/captcha")
|
||||
return (isRequestForStatic || isDev) && config.App.IsRateLimiterEnabled
|
||||
return isRequestForStatic || isDev
|
||||
},
|
||||
Max: 50,
|
||||
}))
|
||||
}
|
||||
app.Use(compress.New())
|
||||
|
||||
app.Static("/uploads", "./uploads")
|
||||
|
Loading…
Reference in New Issue
Block a user