![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/vendor/maennchen/zipstream-php/guides/ |
Usage with nginx ============= If you are using nginx as a webserver, it will try to buffer the response. So you'll want to disable this with a custom header: .. code-block:: php header('X-Accel-Buffering: no'); # or with the Response class from Symfony $response->headers->set('X-Accel-Buffering', 'no'); Alternatively, you can tweak the `fastcgi cache parameters <https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffers>`_ within nginx config. See `original issue <https://github.com/maennchen/ZipStream-PHP/issues/77>`_.