This commit is contained in:
Marcel Pociot
2020-04-29 16:49:33 +02:00
parent c2084e6be6
commit 6cf206e0a2
35 changed files with 566 additions and 215 deletions

15
app/Http/Server.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App\Http;
use Ratchet\Http\HttpServerInterface;
class Server extends \Ratchet\Http\HttpServer
{
public function __construct(HttpServerInterface $component)
{
parent::__construct($component);
$this->_reqParser->maxSize = 15242880000;
}
}