Isso é resultado do nível de log na diretiva error_log do Nginx.
error_log logs/error.log warn;
messages of warn, error crit, alert, and emerg levels are logged.
The default setting of the error log works globally. To override it, place the error_log directive in the main (top-level) configuration context. Settings in the main context are always inherited by other configuration levels. The error_log directive can be also specified at the http, stream, server and location levels and overrides the setting inherited from the higher levels.
Essa linha sobre armazenamento em buffer está no nível de aviso:
[warn] 30055#0: *1428 an upstream response is buffered to a temporary file
Portanto, se você garantir que seu nível de registro de erros não esteja definido para o aviso, ou seja, deixe-o no padrão ou diminua, você não verá mais esse aviso. Qualquer uma das soluções abaixo irá suprimi-las:
Deixe-o no padrão (nível 'erro' e acima):
error_log logs/error.log;
Mesma coisa:
error_log logs/error.log error;
Você também pode aumentar o limite além de error
, até crit
, alert
e emerg
.