如何禁用nginx用户输入缓冲区?

时间:2013-11-30 10:20:32

标签: nginx php

我正在使用nginx和php-fpm。在将其发送到php-fpm之前,Nginx总是缓冲用户输入。示例代码:

<?php 
     exit("do not input anything");

     // Do something, it's not important because the script was stopped
     $handle = fopen('php://input','r');
     while (!feof($handle)) { 
             fread($handle,1024);
    }
     fclose($handle);
?>

我使用put方法从客户端发送数据 如果客户端发送文件,则不会立即关闭连接, 它等待请求完成!


该代码适用于apache但nginx :(


这个问题有解决方案吗?谢谢!

0 个答案:

没有答案