server.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. use Hyperf\Server\Event;
  12. use Hyperf\Server\Server;
  13. use Hyperf\Server\ServerInterface;
  14. return [
  15. 'type' => Server::class,
  16. 'mode' => SWOOLE_BASE,
  17. 'servers' => [
  18. [
  19. 'name' => 'http',
  20. 'type' => ServerInterface::SERVER_HTTP,
  21. 'host' => '0.0.0.0',
  22. 'port' => 9501,
  23. 'sock_type' => SWOOLE_SOCK_TCP,
  24. 'callbacks' => [
  25. Event::ON_REQUEST => [Hyperf\HttpServer\Server::class, 'onRequest'],
  26. ],
  27. ],
  28. ],
  29. 'processes' => [
  30. ],
  31. 'settings' => [
  32. 'enable_coroutine' => true,
  33. 'worker_num' => 4,
  34. 'pid_file' => BASE_PATH . '/runtime/hyperf.pid',
  35. 'open_tcp_nodelay' => true,
  36. 'max_coroutine' => 100000,
  37. 'open_http2_protocol' => true,
  38. 'max_request' => 0,
  39. 'socket_buffer_size' => 2 * 1024 * 1024,
  40. ],
  41. 'callbacks' => [
  42. Event::ON_BEFORE_START => [Hyperf\Framework\Bootstrap\ServerStartCallback::class, 'beforeStart'],
  43. Event::ON_WORKER_START => [Hyperf\Framework\Bootstrap\WorkerStartCallback::class, 'onWorkerStart'],
  44. Event::ON_PIPE_MESSAGE => [Hyperf\Framework\Bootstrap\PipeMessageCallback::class, 'onPipeMessage'],
  45. Event::ON_WORKER_EXIT => [Hyperf\Framework\Bootstrap\WorkerExitCallback::class, 'onWorkerExit'],
  46. ],
  47. ];