2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00

fix: 同步框架更新

This commit is contained in:
耗子
2023-11-22 15:36:41 +08:00
parent 7d1acae966
commit f4cb1a850a

View File

@@ -16,8 +16,8 @@ func init() {
"fiber": map[string]any{
// prefork mode, see https://docs.gofiber.io/api/fiber/#config
"prefork": false,
// Optional, default is 4MB
"body_limit": 4000,
// Optional, default is 4096 KB
"body_limit": 1024 * 1024 * 4,
"route": func() (route.Route, error) {
return fiberfacades.Route("fiber"), nil
},