🐛 remove fastify multipart fileSize limit

This commit is contained in:
Eric Doughty-Papassideris
2024-05-29 17:20:18 +02:00
committed by ericlinagora
parent c3c039d1f9
commit a51316f6a3
@@ -108,7 +108,13 @@ export default class WebServerService extends TdriveService<WebServerAPI> implem
this.server.register(sensible, {
errorHandler: false,
} as FastifyRegisterOptions<FastifyServerOptions>);
this.server.register(multipart);
this.server.register(multipart, {
throwFileSizeLimit: true,
limits: {
// note that null, undefined, 0 and -1 do not remove the default 1mg limit
fileSize: 500 * 1024 * 1024 * 1024 * 1024,
},
});
this.server.register(formbody);
this.server.register(corsPlugin, this.configuration.get<FastifyCorsOptions>("cors", {}));