0

我们使用 kong 作为我们的 API 网关,并且有一些响应时间超过 60 秒的端点。根据 Nginx文档,我可以使用 更改此proxy_read_timeout设置,但此设置没有任何影响,我不知道为什么。

我们使用 kong 作为 docker 容器。这是 Dockerfile 的摘录

FROM mashape/kong:0.9.5
COPY nginx.conf.custom /usr/local/kong/nginx.conf.custom
COPY nginx-kong.conf.custom /usr/local/kong/nginx-kong.conf.custom
...

我们的 nginx-kong.conf.custom 文件与默认文件相同,除了下面的摘录,在 location / 块中。

location / {
    set $upstream_host nil;
    set $upstream_url nil;

    access_by_lua_block {
        kong.access()
    }

    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header Host $upstream_host;
    proxy_pass_header Server;
    proxy_pass $upstream_url;

    proxy_read_timeout 180s;
    proxy_connect_timeout 75s;

    header_filter_by_lua_block {
        kong.header_filter()
    }

    body_filter_by_lua_block {
        kong.body_filter()
    }

    log_by_lua_block {
        kong.log()
    }
}
4

1 回答 1

0

这个页面对https://getkong.org/docs/0.10.x/configuration/有帮助吗?或者,如果没有,我们欢迎 PR 来改进文档 - 您可以在此处找到该页面的源https://github.com/Mashape/getkong.org/blob/master/app/docs/0.10.x/configuration.md

于 2017-04-18T01:02:07.690 回答