12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- use Hyperf\Server\Event;
- use Hyperf\Server\Server;
- use Hyperf\Server\ServerInterface;
- return [
- 'type' => Server::class,
- 'mode' => SWOOLE_BASE,
- 'servers' => [
- [
- 'name' => 'http',
- 'type' => ServerInterface::SERVER_HTTP,
- 'host' => '0.0.0.0',
- 'port' => 9501,
- 'sock_type' => SWOOLE_SOCK_TCP,
- 'callbacks' => [
- Event::ON_REQUEST => [Hyperf\HttpServer\Server::class, 'onRequest'],
- ],
- ],
- ],
- 'processes' => [
- ],
- 'settings' => [
- 'enable_coroutine' => true,
- 'worker_num' => 4,
- 'pid_file' => BASE_PATH . '/runtime/hyperf.pid',
- 'open_tcp_nodelay' => true,
- 'max_coroutine' => 100000,
- 'open_http2_protocol' => true,
- 'max_request' => 0,
- 'socket_buffer_size' => 2 * 1024 * 1024,
- ],
- 'callbacks' => [
- Event::ON_BEFORE_START => [Hyperf\Framework\Bootstrap\ServerStartCallback::class, 'beforeStart'],
- Event::ON_WORKER_START => [Hyperf\Framework\Bootstrap\WorkerStartCallback::class, 'onWorkerStart'],
- Event::ON_PIPE_MESSAGE => [Hyperf\Framework\Bootstrap\PipeMessageCallback::class, 'onPipeMessage'],
- Event::ON_WORKER_EXIT => [Hyperf\Framework\Bootstrap\WorkerExitCallback::class, 'onWorkerExit'],
- ],
- ];
|