So I have a BUN application deployed on render
I’m using express for the http server and I have set every possible file upload limit to the maximum.
My web app is a react.js app which is using axios to make requests.
I want to upload formData to my server from the client and it is working fine if I host my server on localhost. Render’s proxy is responding to my client’s request with a 413 Payload Too Large error and my bun app does not even get any request on that route. My client formData upload is just rejected after 1 or 2 minutes.
Can I somehow set the upload limit on render’s proxy?
What is the solution?