在 fasthttp 中上传尺寸大于 DefaultMaxRequestBodySize 的文件

Upload a file with greater dimension than DefaultMaxRequestBodySize in fasthttp

我找不到上传尺寸大于 DefaultMaxRequestBodySize 的文件的示例。您能否分享如何使用 fasthttp 上传大文件?

不幸的是,我收到错误 body size exceeds the given limit

s := &fasthttp.Server{
    Handler: requestHandler,

    // Every response will contain 'Server: My super server' header.
    Name: "My super server",

    // Other Server settings may be set here.

    MaxRequestBodySize: 4 * 1024 * 1024 * 1024,
}

启动时设置大小即可。