Merge pull request #130 from davisonio/specify-keepalive_timeout
Specify that keepalive_timeout is in seconds
This commit is contained in:
commit
029821b1a8
|
@ -52,8 +52,8 @@ 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: 75s)
|
||||||
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().
|
||||||
|
|
Loading…
Reference in New Issue