System Information
- Strapi Version: 3.4.3
- Operating System: Windows 10
- Database: SQLite
- Node Version: 14.15.3
- NPM Version: 6.14.9
- Yarn Version: 1.22.5
I want to upload file 2GB.
I changed middleware.js in config like this
module.exports = {
settings: {
parser: {
enabled: true,
multipart: true,
formidable: {
maxFileSize: 20 * 1024 * 1024 * 1024,
}
}
},
};
When upload I have error The file is too big. What causes this problem? I followed Strapi documentation to change maxFilesize.