mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-14 05:55:54 +00:00
wip
This commit is contained in:
15
app/HttpServer/HttpServer.php
Normal file
15
app/HttpServer/HttpServer.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\HttpServer;
|
||||
|
||||
use Ratchet\Http\HttpServerInterface;
|
||||
|
||||
class HttpServer extends \Ratchet\Http\HttpServer
|
||||
{
|
||||
public function __construct(HttpServerInterface $component)
|
||||
{
|
||||
parent::__construct($component);
|
||||
|
||||
$this->_reqParser->maxSize = 15242880;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user