12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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
- */
- return [
- 'enable' => [
- 'discovery' => true,
- 'register' => true,
- ],
- 'consumers' => [],
- 'providers' => [],
- 'drivers' => [
- 'consul' => [
- 'uri' => 'http://127.0.0.1:8500',
- 'token' => '',
- 'check' => [
- 'deregister_critical_service_after' => '90m',
- 'interval' => '1s',
- ],
- ],
- 'nacos' => [
- // nacos server url like https://nacos.hyperf.io, Priority is higher than host:port
- // 'url' => '',
- // The nacos host info
- 'host' => '127.0.0.1',
- 'port' => 8848,
- // The nacos account info
- 'username' => null,
- 'password' => null,
- 'guzzle' => [
- 'config' => null,
- ],
- 'group_name' => 'api',
- 'namespace_id' => 'namespace_id',
- 'heartbeat' => 5,
- 'ephemeral' => true,
- 'cluster' => 'DEFAULT',
- // Only support for nacos v2.
- 'grpc' => [
- 'enable' => false,
- 'heartbeat' => 10,
- ],
- ],
- ],
- ];
|