I can't upload large files (5, 10, 15 gb) to aws s3

module.exports = [
“strapi::errors”,
/* Replace ‘strapi::body’ with this snippet /
/
Beginning of snippet /
{
name: “strapi::body”,
config: {
formLimit: “5024mb”,
jsonLimit: “250mb”,
textLimit: “250mb”,
formidable: {
maxFileSize: 5 * 1024 * 1024 * 1024, // 1 GB
uploadDir: “…/uploads”,
},
},
},
/
End of snippet */
{
name: “strapi::security”,
config: {
// Your security configuration here…
contentSecurityPolicy: {
useDefaults: true,
directives: {
“connect-src”: [“‘self’”, “https:”],
“img-src”: [
“‘self’”,
“data:”,
“blob:”,
market-assets.strapi.io”,
https://buuucket.s3.us-east-1.amazonaws.com”,
],
“media-src”: [
“‘self’”,
“data:”,
“blob:”,
market-assets.strapi.io”,
https://buuucket.s3.us-east-1.amazonaws.com”,
],
upgradeInsecureRequests: null,
},
},
},
},
“strapi::logger”,
“strapi::errors”,
“strapi::cors”,
“strapi::poweredBy”,
“strapi::query”,
“strapi::session”,
“strapi::favicon”,
“strapi::public”,
];