Quantcast
Channel: Nginx upstream prematurely closed connection while reading response header from upstream, for large requests - Stack Overflow
Browsing latest articles
Browse All 16 View Live

Answer by Juozas for Nginx upstream prematurely closed connection while...

I started to got the same error. And it was nothing related with upstream or timeouts. I solved that by adding X-Real-IP, X-Forwarded-For in my nginx config: location / { ... proxy_set_header Host...

View Article



Answer by mbenhalima for Nginx upstream prematurely closed connection while...

For me, i had to downgrade connexion to pre 3.x version for this work :#connexion[flask,swagger-ui,uvicorn]connexion[swagger-ui]==2.14flask==2.2.3

View Article

Answer by Alexey Podlasov for Nginx upstream prematurely closed connection...

My web application is in containerized deployment:(ingress) -> (nginx proxy) -> (ingress) -> (go http container)Nginx reported "upstream prematurely closed connection" for no reason, which I...

View Article

Answer by Gerard de Visser for Nginx upstream prematurely closed connection...

This error can also occur when your code is getting into a loop. So investigate if you have any (indirectly) self-referencing code that's causing this.

View Article

Answer by ChrisDanger for Nginx upstream prematurely closed connection while...

I was finding this error in the logs of my AWS Elastic Beanstalk instance when trying to post about half a million rows to my api.I followed all the advice here to no avail.What did finally work was...

View Article


Answer by Tomasz Poradowski for Nginx upstream prematurely closed connection...

I stumbled upon *145660 upstream prematurely closed connection while reading upstream Nginx error log entry when trying to download a 2GB file from the server Nginx was a proxy for. The message...

View Article

Answer by Margach Chris for Nginx upstream prematurely closed connection...

ProblemThe upstream server is timing out and I don't what is happening.Where to Look first before increasing read or write timeout if your server is connecting to a databaseServer is connecting to a...

View Article

Answer by William for Nginx upstream prematurely closed connection while...

I ran into this issue as well and found this post. Ultimately none of these answers solved my problem, instead I had to put in a rewrite rule to strip out the location /rt as the backend my developers...

View Article


Answer by The Coder for Nginx upstream prematurely closed connection while...

I got the same error, here is how I resolved it:Downloaded logs from AWS.Reviewed Nginx logs, no additional details as above.Reviewed node.js logs, AccessDenied AWS SDK permissions error.Checked the S3...

View Article


Answer by LucieDevGirl for Nginx upstream prematurely closed connection while...

I meet the same problem and no one of the solutions detailed here worked for me ...First of all I had an error 413 Entity too large so I updated my nginx.conf as following :http { # Increase request...

View Article

Answer by Yukshy Klein for Nginx upstream prematurely closed connection while...

I don't think this is your case, but I'll post it if it helps anyone. I had the same issue and the problem was that Node didn't respond at all (I had a condition that when failed didn't do anything -...

View Article

Answer by millenion for Nginx upstream prematurely closed connection while...

I had the same error for quite a while, and here what fixed it for me.I simply declared in service that i use what follows:Description= Your node service...

View Article

Answer by tanner burton for Nginx upstream prematurely closed connection...

You can increase the timeout in node like so.app.post('/slow/request', function(req, res) { req.connection.setTimeout(100000); //100 seconds ...}

View Article


Answer by OpSocket for Nginx upstream prematurely closed connection while...

I solved this by setting a higher timeout value for the proxy:location / { proxy_read_timeout 300s; proxy_connect_timeout 75s; proxy_pass http://localhost:3000;}Documentation:...

View Article

Answer by SilentMiles for Nginx upstream prematurely closed connection while...

I think that error from Nginx is indicating that the connection was closed by your nodejs server (i.e., "upstream"). How is nodejs configured?

View Article


Nginx upstream prematurely closed connection while reading response header...

I am using nginx and node server to serve update requests. I get a gateway timeout when I request an update on large data. I saw this error from the nginx error logs :2016/04/07 00:46:04 [error]...

View Article
Browsing latest articles
Browse All 16 View Live




Latest Images