diff --git a/pkg/internal/server/server.go b/pkg/internal/server/server.go index d90f354..e3901cc 100644 --- a/pkg/internal/server/server.go +++ b/pkg/internal/server/server.go @@ -27,6 +27,7 @@ func NewServer() *HTTPApp { ProxyHeader: fiber.HeaderXForwardedFor, JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal, JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal, + BodyLimit: 512 * 1024 * 1024 * 1024, // 512 TiB EnablePrintRoutes: viper.GetBool("debug.print_routes"), })