33 lines
578 B
PHP
33 lines
578 B
PHP
<?php
|
|
/**
|
|
* Author: ykxiao
|
|
* Date: 2024/5/31
|
|
* Time: 08:40
|
|
* Description:
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'enable' => [
|
|
'discovery' => true,
|
|
'register' => true,
|
|
],
|
|
'consumers' => [],
|
|
|
|
'providers' => [],
|
|
'drivers' => [
|
|
'nacos' => [
|
|
'host' => '127.0.0.1',
|
|
'port' => 8848,
|
|
// The nacos account info
|
|
'username' => null,
|
|
'password' => null,
|
|
'guzzle' => [
|
|
'config' => null,
|
|
],
|
|
'heartbeat' => 5,
|
|
],
|
|
],
|
|
];
|