Max File Upload
Hi, I'm dealing with large file uploads in a node app (500+MB) and I was wondering what happens when making such requests when your domain is proxied through cloudflare? Will I get a 413?
3 Replies
yup
Cloudflare limits the upload size (HTTP POST request size) per plan type: 100MB Free and Pro 200MB Business 500MB Enterprise by default. Contact Customer Support to request a limit increase.https://developers.cloudflare.com/cache/concepts/default-cache-behavior/ If you need more without upgrading, chunk the upload or do it unproxied
Ok thank you, that's what I am trying to do currently is to chunk the file.