Specify that keepalive_timeout is in seconds

This commit is contained in:
Craig Davison 2016-01-23 13:59:22 +00:00
parent 6e4b16c4cf
commit 35434b3361
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ http {
# How long to allow each connection to stay idle; longer values are better # How long to allow each connection to stay idle; longer values are better
# for each individual client, particularly for SSL, but means that worker # for each individual client, particularly for SSL, but means that worker
# connections are tied up longer. (Default: 65) # connections are tied up longer. (Default: 65)
keepalive_timeout 20; keepalive_timeout 20s;
# Speed up file transfers by using sendfile() to copy directly # Speed up file transfers by using sendfile() to copy directly
# between descriptors rather than using read()/write(). # between descriptors rather than using read()/write().