Skip to content

Commit

Permalink
fix: removed body size limit (max 100gb)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClimenteA committed Nov 19, 2023
1 parent fe1fbe7 commit 997a58e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ func main() {
store := session.New()

app := fiber.New(fiber.Config{
Views: htmlEngine,
Views: htmlEngine,
BodyLimit: 100 * 1024 * 1024 * 1024, // 100 GB
})

app.Use(logger.New())
Expand Down

0 comments on commit 997a58e

Please sign in to comment.