# 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 --git a/xml/en/docs/http/ngx_http_core_module.xml b/xml/en/docs/http/ngx_http_core_module.xml --- a/xml/en/docs/http/ngx_http_core_module.xml +++ b/xml/en/docs/http/ngx_http_core_module.xml @@ -1249,6 +1249,24 @@ Enables or disables logging of subreques + +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 @@ See also the +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 @@ Enables or disables the use of + + +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. + + + + +