Nginx 让 PHP Flush 工作
In nginx.conf:
. gzip off;
. proxy_buffering off;
或者直接在 PHP 文件头加入
header('X-Accel-Buffering: no');
header('Content-Encoding: none');
In nginx.conf:
. gzip off;
. proxy_buffering off;
或者直接在 PHP 文件头加入
header('X-Accel-Buffering: no');
header('Content-Encoding: none');