Nginx - Resposta vazia na página de erro com proxy_pass

4

Tarefa: nginx config para proxy reverso para contêineres do Docker com pesquisa dinâmica e armazenamento em cache.

Processar fluxo de trabalho:

  1. verifique o cache. se upstream encontrado - proxy
  2. se não for encontrado - solicite, cache e proxy
  3. se encontrado, mas o cache é inválido - limpe o cache e execute novamente

Configuração atual (modelo):

server {
    listen *;
    server_name {{host}};

    set $attempt 0;

    location / {
        try_files '/dev/null' @run;
    }

    location @run {
        internal;
        set $container_name "{{container_name}}";
        set $upstream "";

        rewrite_by_lua '
             local attempt = tonumber(ngx.var.attempt)

             if attempt > 1 then
                ngx.log(ngx.ALERT, "Upstream down")
                ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
             end

             local routes = ngx.shared.upstream_cache

             if attempt > 0 then
                ngx.log(ngx.ALERT, "Deleteing cache")
                routes:delete(ngx.var.http_host)
             end

             ngx.var.attempt = attempt + 1

             -- try cached route first
             local route = routes:get(ngx.var.http_host)
             if route == nil then
                 ngx.log(ngx.ALERT, "Asking docker about IP of " .. ngx.var.http_host)
                 local handle = io.popen("docker inspect --format \'{{ .NetworkSettings.IPAddress }}\' " .. ngx.var.container_name)
                 local result = handle:read("*a")
                 handle:close()
                 route = result
             end

             if route ~= nil then
                 ngx.var.upstream = route:gsub("^%s*(.-)%s*$", "%1")
                 routes:set(ngx.var.http_host, route)
             else
                 ngx.exit(ngx.HTTP_NOT_FOUND)
             end
        ';

        error_page 504 @run;

        proxy_buffering             off;
        proxy_set_header            Host $host;
        proxy_set_header            X-Real-IP  $remote_addr;
        proxy_set_header            X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_redirect              off;
        proxy_send_timeout          30;
        proxy_read_timeout          30;
        proxy_connect_timeout       2;

        proxy_pass $scheme://$upstream;

    }

}

Quase funciona. Está tudo bem, exceto cenário quando o cache é inválido e triggers error_page.

Nesse caso, o processo é executado como deveria, visto pelo log:

[error] 7238#0: *6 upstream timed out (110: Connection timed out) while connecting to upstream
[alert] 7238#0: *6 [lua] [string "rewrite_by_lua"]:12: Deleteing cache
[alert] 7238#0: *6 [lua] [string "rewrite_by_lua"]:21: Asking docker about IP

E faz um pedido correto para o envio de dados.

MAS a resposta está vazia!

E no próximo pedido - está tudo bem, o upstream é retirado do cache.

Por que e como corrigir isso?

    
por Terion 15.08.2015 / 17:18

1 resposta

0

Porra simples. error_page 504 = @run; em vez de error_page 504 @run;

    
por 17.08.2015 / 11:39