🐛 Fix large JWT header

This commit is contained in:
LittleSheep 2025-03-23 00:07:52 +08:00
parent 8e33b99bca
commit 60d8c0b766

View File

@ -33,6 +33,7 @@ func NewServer() *App {
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
BodyLimit: 50 * 1024 * 1024,
ReadBufferSize: 5 * 1024 * 1024, // 5MB for large JWT
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
})