🐛 Fix request entity too large

This commit is contained in:
LittleSheep 2024-08-02 15:39:19 +08:00
parent 8cf0feb09a
commit 63ea5e848f

View File

@ -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"),
})