I am developing a web app using MEAN Stack and Angular 6. I want to upload tiff files(maps) with large file size.(max size is around 1.4 GB).I used 'ng2fileUpload' and 'multer' for that but it does not allow to store large files. Is there any good method to use for uploading large files in nodejs. My preavious post is on this link. 'Uploading files using multer gives 'request entity too large' error'
Asked
Active
Viewed 123 times
0
-
Can you provide code examples? – Martijn van Wezel Oct 31 '18 at 22:49
-
Can you post directly to an object store like [Amazon S3](https://aws.amazon.com/s3/) and skip the Node part? – tadman Oct 31 '18 at 22:50
-
@Wezel I updated the question. – RMD Oct 31 '18 at 22:58
1 Answers
0
You should check first if there is a limit on max upload on the server site instead of the client side. There is a limit with apache service.

Martijn van Wezel
- 1,120
- 14
- 25