1234567891011121314151617181920212223242526272829 |
- <?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 [
- // nacos server url like https://nacos.hyperf.io, Priority is higher than host:port
- // 'uri' => 'http://127.0.0.1:8848/',
- // The nacos host info
- 'host' => '127.0.0.1',
- 'port' => 8848,
- // The nacos account info
- 'username' => null,
- 'password' => null,
- 'guzzle' => [
- 'config' => null,
- ],
- // Only support for nacos v2.
- 'grpc' => [
- 'enable' => false,
- 'heartbeat' => 10,
- ],
- ];
|