🐛 Increase the header field size limit

This commit is contained in:
LittleSheep 2025-03-20 21:34:29 +08:00
parent 7994d1a897
commit c8bba4fb2d

View File

@ -29,6 +29,7 @@ func NewServer() *WebApp {
JSONEncoder: json.Marshal,
JSONDecoder: json.Unmarshal,
BodyLimit: 512 * 1024 * 1024 * 1024, // 512 TiB
ReadBufferSize: 5 * 1024 * 1024, // 5MB for large JWT
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
})