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

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

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

[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 секунд.

server {
listen 80;
server_name mydomain.com;

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

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

Комментарии

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×