diff --git a/src/Servers/Reverb/Factory.php b/src/Servers/Reverb/Factory.php index 89fb0a08..3d9f6c5d 100644 --- a/src/Servers/Reverb/Factory.php +++ b/src/Servers/Reverb/Factory.php @@ -27,6 +27,9 @@ class Factory */ public static function make(string $host = '0.0.0.0', string $port = '8080', LoopInterface $loop = null) { + set_time_limit(0); + ob_implicit_flush(); + $loop = $loop ?: Loop::get(); $socket = new SocketServer("{$host}:{$port}", [], $loop);