# HG changeset patch # User Ruslan Ermilov # Date 1320697718 0 # Node ID 3381ae6a93e425688fc0d9e4d09f45997862a53d # Parent 69c131b0ebe0d42089bedd8b643f57dbc0b94a09 Documented the max_ranges, postpone_output, and sendfile_max_chunk directives. diff -r 69c131b0ebe0 -r 3381ae6a93e4 xml/en/docs/http/ngx_http_core_module.xml --- a/xml/en/docs/http/ngx_http_core_module.xml Mon Nov 07 14:07:37 2011 +0000 +++ b/xml/en/docs/http/ngx_http_core_module.xml Mon Nov 07 20:28:38 2011 +0000 @@ -1249,6 +1249,24 @@ + +number + +http +server +location + + +Limits the maximum allowed number of ranges in byte-range requests. +Requests that exceed the limit are processed as if there were no +byte ranges specified. +By default, there is no limit. +The value of zero disables the byte-range support completely. + + + + + on | off on @@ -1527,6 +1545,22 @@ + +size +1460 +http +server +location + + +If possible, the output of client data will be postponed until +nginx has at least size bytes of data to send. +Value of zero disables postponing. + + + + + size 0 @@ -1769,6 +1803,23 @@ + + +size +0 +http +server +location + + +When set to a non-zero value, limits the amount of data that can be +transferred in a single sendfile call. +Without the limit, one fast connection may seize the worker process. + + + + +