Merge pull request #2525 from nicksardo/keepalive-timeout

Increase keepalive_timeout for echoheaders
This commit is contained in:
Nick Sardo 2018-05-16 15:18:55 -07:00 committed by GitHub
commit f4792d28bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,10 @@ Request Body:
# Replace '_' with your hostname. # Replace '_' with your hostname.
server_name _; server_name _;
# set long keepalive_timeout because some loadbalancer proxies expect the connection
# to remain open for at least ten minutes.
keepalive_timeout 620s;
location / { location / {
lua_need_request_body on; lua_need_request_body on;
content_by_lua_block { content_by_lua_block {