From 926cdf58cf668fe64233987df2ffcfa7d0d894ab Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 12 Mar 2016 19:02:57 +0200 Subject: [PATCH] roles/nginx: keepalive_timeout is in seconds See: http://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout Signed-off-by: Alan Orth --- roles/nginx/files/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nginx/files/nginx.conf b/roles/nginx/files/nginx.conf index 6f38561..800e4ff 100644 --- a/roles/nginx/files/nginx.conf +++ b/roles/nginx/files/nginx.conf @@ -26,7 +26,7 @@ http { sendfile on; #tcp_nopush on; - keepalive_timeout 65; + keepalive_timeout 65s; gzip on; gzip_vary on;