Исправление ошибки Upstream timed out (110: Connection timed out)

Исправление ошибки Upstream timed out (110: Connection timed out)

Roman Bogachev VMware Specialist | Drone Pilot | Traveler

Исправление ошибки “Upstream timed out (110: Connection timed out)”, из-за долгого ответа сервера.

1
2
[error] upstream timed out (110: Connection timed out) while reading response header from upstream, 
client: xxx.xxx.xxx.xxx, server: mydomain.com, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8080", host: "mydomain.com", referrer: "requested_url"

Вносим изменения в конфигурационный файл nginx.conf в директиву proxy_read_timeout, а именно - увеличим значение при котором сервер будет ожидать ответа на запрос. По умолчанию 60 секунд, мы выставим - 300 секунд.

1
2
3
4
5
6
7
8
9
10
11
server {
listen 80;
server_name mydomain.com;

location / {
...
proxy_read_timeout 300;
...
}
...
}

Это решит возникшую проблему.

On this page