This commit is contained in:
Aether
2025-09-23 15:29:55 +08:00
parent 0202f630bd
commit 485f59eac3
4 changed files with 106 additions and 94 deletions

View File

@@ -15,6 +15,20 @@ use function Hyperf\Support\env;
return [
'mode' => SWOOLE_PROCESS,
'servers' => [
[
'name' => 'http',
'type' => Server::SERVER_HTTP,
'host' => '0.0.0.0',
'port' => 9501,
'sock_type' => SWOOLE_SOCK_TCP,
'callbacks' => [
Event::ON_REQUEST => [Hyperf\HttpServer\Server::class, 'onRequest'],
],
'options' => [
// Whether to enable request lifecycle event
'enable_request_lifecycle' => false,
],
],
[
'name' => 'jsonrpc-http',
'type' => Server::SERVER_HTTP,