I am working on a react / nodejs (express) stack. In this project, I have to upload large binary file (~150mb) from the client to server. Everything went well until the production deployment. Due to a proxy limitation (10mb) our request are blocked.
I have read a lot the past few days regarding splitting files and multipart. Also tried a lot (byte-range etc.) without success, and without understanding what I did.
Can someone have any idea about how to split files client side and reconstitute it in server side and doing the same thing in the other way?
Thanks in advance and excuse my mistake if any.