The 413 or 'Request entity too large' status code means the server is refusing to process a request because the request entity is larger than the server is willing or able to process.
Questions tagged [http-status-code-413]
142 questions
1
vote
1 answer
asp.net web api: IIS8 - (413) Request Entity Too Large
I have asp.net web api application hosted in IIS. This app has 100mb in

mtkachenko
- 5,389
- 9
- 38
- 68
1
vote
0 answers
STILL 413 Request Entity Too Large
Running apache2.2 with php5.
Trying to upload a 1.9MB image file and is getting Error 413 Request Entity Too Large. Tried all the possible settings I could find so far and is still giving me that error, can anyone think of anything else that I am…

codenamezero
- 2,724
- 29
- 64
1
vote
0 answers
How to create multiple chunks out of large payload before HTTP POST - python
If the posted message is too large, say either larger than m MB or n entries, then the server will respond with 413 Request Entity Too Large. I should be able to divide the data into smaller chunks and re-POST it.
I researched about multi-part…

user3662599
- 63
- 1
- 1
- 5
1
vote
2 answers
Node/Nginx, 413 request entity too large, client_max_body_size set
Pretty similar to https://serverfault.com/questions/539466/413-request-entity-too-large-client-max-body-size-is-set
I've got a Node server (using Loopback) running on top of nginx (to be specific, the dockerfile/nginx image), but whenever I do a…

dchang
- 2,440
- 4
- 24
- 27
1
vote
1 answer
What is the maximum file size for assets stored in Apigee API BaaS?
Looking at the Apigee docs, there doesn't seem to be an indication of the maximum allowed file size for assets in API BaaS.
Currently I'm trying to POST a 39MB archive using the following CURL command:
curl -X PUT -i -F name="archive" -F…

brandonscript
- 68,675
- 32
- 163
- 220
1
vote
3 answers
WCF 413 Request Entity Too Large - Self Hosted WebHttpBinding
There are many discussions about this problem, however I have now tried every possible solution and we are still getting 413 Request Entity Too Large errors from the server.
Our WCF service is self hosted via an Azure Worker role, and does not use…

antscode
- 271
- 4
- 11
1
vote
1 answer
php curl api call fails with a 413
Have been playing this for a while its a function to connect to an api the un / pw and url are definitely correct.
However it keeps failing with a 413 error code which I understand to mean the data stream to the server was too large but all I am…

megaSteve4
- 1,760
- 1
- 17
- 24
0
votes
0 answers
How to increase aws ec2 load balancer size limit, my post request return 413
I am calling a POST method at an EC2 instance from a Lambda function with a big size json payload, the size of this payload is around 1.6MB. The response returned 413(payload too large). The response message is…

AKALawrence
- 1
- 2
0
votes
0 answers
nginx 413 when trying to upload a to a private docker registry
I'm setting up a private docker registry, which I'm accessing via an nginx proxy.
Am able to connect to the registry, but cannot push an image to it.
Here's the response that I'm getting from the docker Push command.
error parsing HTTP 413…

Colin Dawson
- 435
- 2
- 12
0
votes
0 answers
how to restrict request when entity in requests is too large in node js?
I am using sails js version 1.2.4 and node version 12.16.1.
I am suddenly getting http 413 error code that is Request entity too large in error logs of my server and i am sure that i have not sent those request. I know that a 413 HTTP error code…

Prem popatia
- 321
- 3
- 14
0
votes
0 answers
NginX FileUpload on Windows throwing 413
i tested a lot of recomendations found on Stackoverflow or on other sites, but none of them helped me.
I need to change the max file size for nginx for fileupload.
It was recomended to add client_max_body_size to the html section. So I did this. My…

TimoBickert
- 60
- 1
- 6
0
votes
1 answer
receiving 413 and 400 errors for WCF service
I am coding a WCF service using json that is currently executing in a console app for debugging/testing. Once completed this WCF service will be executing as a Windows Service. The WCF service will be consumed by a Windows Form app and an…

Steve
- 11
- 1
- 2
0
votes
0 answers
AWS Gitlab - error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
Can't able to push a reactjs project into the Repo. Either it shows HTTP 413 error or HTTP 524. Increase the Gitlab push size and nginx['client_max_body_size'] = "500m" but still the same issue. Tried all the solution given in the internet but…

Karthic N
- 21
- 4
0
votes
0 answers
Spring Boot 413 Request Entity Too Large
How can I resolve the 413 Request Entity Too Large error in a Spring Boot?
I am developing a Spring Boot application that uses a Tomcat Embedded server.
I have a REST endpoint that accepts a request parameter 'string' and returns a streaming…

Ciro Dolce
- 19
- 3
0
votes
1 answer
Nginx Error 413 Entity too large on AWS ELB
So,I am using Django for my backend application deployed on AWS Elastic Beanstalk (EC2 t2.micro, Amazon Linux 2). When I am trying to submit files (.mp4, pdf) that are obviously larger than 1MB, I get Nginx Error 413: Entity too large. The problem…

RasimMehdiyev
- 25
- 4