From 35434b3361b04beb028f602c78a9331ef4967a0d Mon Sep 17 00:00:00 2001 From: Craig Davison Date: Sat, 23 Jan 2016 13:59:22 +0000 Subject: [PATCH] Specify that keepalive_timeout is in seconds --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 8477df2..88fafda 100644 --- a/nginx.conf +++ b/nginx.conf @@ -53,7 +53,7 @@ http { # How long to allow each connection to stay idle; longer values are better # for each individual client, particularly for SSL, but means that worker # connections are tied up longer. (Default: 65) - keepalive_timeout 20; + keepalive_timeout 20s; # Speed up file transfers by using sendfile() to copy directly # between descriptors rather than using read()/write().