Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 2297)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#2083 duplicate The restriction on directive "fastcgi_buffers" is not complete. zhoushulin1992@…
Description

Based on the handling logic in src/http/modules/ngx_http_fastcgi_module.c, the "fastcgi_buffers" must be at least 2 buffers, but the document doesn't mentioned it. It is better to add this information in the doc https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffers.

#2084 wontfix The restriction on directive "proxy_buffers" is not complete. zhoushulin1992@…
Description

Based on the handling logic in src/http/modules/ngx_http_proxy_module.c, the "proxy_buffers" must be at least 2 buffers, but the document doesn't mentioned it. It is better to add this information in the doc https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffers.

A similar situation also happens in directive "scgi_buffers"(https://nginx.org/en/docs/http/ngx_http_scgi_module.html#scgi_buffers) and "uwsgi_buffers"(https://nginx.org/en/docs/http/ngx_http_uwsgi_module.html#uwsgi_buffers).

#2085 duplicate The relationship between directive "fastcgi_busy_buffers_size" and other two directives is not recorded clearly. zhoushulin1992@…
Description

In the document of directive "fastcgi_busy_buffers_size", it says that "By default, size is limited by the size of two buffers set by the fastcgi_buffer_size and fastcgi_buffers directives". Indeed, based on the handling logic in src/http/modules/ngx_http_fastcgi_module.c, the value of "fastcgi_busy_buffers_size" must be equal or greater than the maximum of the value of "fastcgi_buffer_size" and "fastcgi_buffers" size. So it is recommended to add this information in the doc of "fastcgi_busy_buffers_size"(https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_busy_buffers_size).

The same situation happens in directive "fastcgi_temp_file_write_size" in https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_temp_file_write_size, and directive "fastcgi_max_temp_file_size" in https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_max_temp_file_size. They should all be equal or greater than the maximum of the value of "fastcgi_buffer_size" and "fastcgi_buffers" size.

What's more, the value of directive "fastcgi_busy_buffers_size" must be less than (number-of-fastcgi_buffers - 1)*size-of-fastcgi_buffers. This also should be recorded.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.