Changes between Version 14 and Version 15 of help/en/howto/mount/issues/fastcgi
- Timestamp:
- Jan 13, 2021 10:03:05 AM (5 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
help/en/howto/mount/issues/fastcgi
v14 v15 30 30 === Recommended configuration === 31 31 ==== Nginx ==== 32 The nginx developers try to work around this issue by simply buffering the entire incoming stream and forward it through the FastCGI interface as a request with a well-known length. Make sure request buffering setting `fastcgi_request_buffering` is enabled (Nginx does request buffering by [http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_request_buffering default]). There are several [http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html options] to adjust the buffering behaviour. 32 The Nginx developers try to work around this issue by simply buffering the entire incoming stream and forward it through the FastCGI interface as a request with a well-known length. Make sure request buffering setting `fastcgi_request_buffering` is enabled (Nginx does request buffering by [http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_request_buffering default]). There are several [http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html options] to adjust the buffering behaviour. 33 34 Another (unverified) workaround might be to switch from socket to loopback communication for an Nginx/PHP-FPM setup. For more information refer to [https://github.com/nextcloud/server/issues/3628#issuecomment-749568045]. 33 35 34 36 ==== Apache ====