Nginx 504 Erro de gateway incorreto

0

Eu tenho um ambiente de servlet java que intencionalmente mantém uma conexão http aberta e enviando dados para um cliente. Esta conexão está sendo descartada após 50 segundos, eu tentei configurações diferentes no arquivo nginx.conf, mas nenhuma delas funcionou.

Estou recebendo este erro.

upstream expirou (110: Tempo limite da conexão esgotado) durante a leitura do cabeçalho de resposta do upstream, client: {Alguns IP}, server:, request: "GET / {algum caminho} HTTP / 1.1", upstream: " link ", host:" sadfdsa.us-west-1.elb.amazonaws.com "

    
por gerfmarquez 03.02.2017 / 23:02

1 resposta

1

Syntax:     proxy_send_timeout time;
Default:    proxy_send_timeout 60s;
Context:    http, server, location
The timeout is set only between two successive write operations, not for the transmission of the whole request.

Syntax:     proxy_read_timeout time;
Default:    proxy_read_timeout 60s;
Context:    http, server, location
The timeout is set only between two successive read operations, not for the transmission of the whole response.

Editar esses obviamente ajudou o que perguntou.

    
por 10.03.2017 / 08:13