diff --git a/config/autoload/server.php b/config/autoload/server.php index 0d82114..e2b0858 100644 --- a/config/autoload/server.php +++ b/config/autoload/server.php @@ -21,7 +21,7 @@ return [ 'name' => 'http', 'type' => Server::SERVER_HTTP, 'host' => '0.0.0.0', - 'port' => 9901, + 'port' => 8401, 'sock_type' => SWOOLE_SOCK_TCP, 'callbacks' => [ Event::ON_REQUEST => [Hyperf\HttpServer\Server::class, 'onRequest'], @@ -31,7 +31,7 @@ return [ 'name' => 'jsonrpc-http', 'type' => Server::SERVER_HTTP, 'host' => '0.0.0.0', - 'port' => 9902, + 'port' => 8402, 'sock_type' => SWOOLE_SOCK_TCP, 'callbacks' => [ Event::ON_REQUEST => [\Hyperf\JsonRpc\HttpServer::class, 'onRequest'],