Skip to content

Commit a50e809

Browse files
committed
refactor: allow 100 MB body size
1 parent 39212c6 commit a50e809

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

platform/server/fiber.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func (s *FiberServer) Start() {
5151
DisableStartupMessage: true,
5252
ErrorHandler: errorHandler(s.logger),
5353

54-
BodyLimit: 25 * 1024 * 1024, // 25 MB
54+
BodyLimit: 100 * 1024 * 1024, // 100 MB
5555
ServerHeader: "codern",
5656

5757
TrustedProxies: s.cfg.Client.Fiber.TrustedProxies,

0 commit comments

Comments
 (0)