diff --git a/pkg/internal/server/server.go b/pkg/internal/server/server.go index 3a281d7..42e5497 100644 --- a/pkg/internal/server/server.go +++ b/pkg/internal/server/server.go @@ -32,6 +32,7 @@ func NewServer() *App { JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal, JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal, BodyLimit: 512 * 1024 * 1024 * 1024, // 512 TiB + ReadBufferSize: 5 * 1024 * 1024, // 5MB for large JWT EnablePrintRoutes: viper.GetBool("debug.print_routes"), })