From 6cade2e2da1692512b407698f91bd0e9f5409e4c Mon Sep 17 00:00:00 2001 From: huangzhhui Date: Wed, 27 Mar 2019 15:07:41 +0800 Subject: [PATCH] Update config-center.md --- zh/config-center.md | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/zh/config-center.md b/zh/config-center.md index be9845a9c..3e5490695 100644 --- a/zh/config-center.md +++ b/zh/config-center.md @@ -16,26 +16,24 @@ Hyperf 为您提供了分布式系统的外部化配置支持,默认且仅适 如果您没有对配置组件进行替换使用默认的 [hyperf/config](https://github.com/hyperf-cloud/config) 组件的话,接入 Apollo 配置中心则是轻而易举,只需两步。 - 通过 Composer 将 [hyperf/config-apollo](https://github.com/hyperf-cloud/config-apollo) ,即执行命令 `composer require hyperf/config-apollo` -- 在 `config/autoload` 文件夹内增加一个 `config-center.php` 的配置文件,配置内容如下 +- 在 `config/autoload` 文件夹内增加一个 `apollo.php` 的配置文件,配置内容如下 ```php true, - 'apollo' => [ - // Apollo Server - 'server' => 'http://127.0.0.1:8080', - // 您的 AppId - 'appid' => 'test', - // 当前应用所在的集群 - 'cluster' => 'default', - // 当前应用需要接入的 Namespace,可配置多个 - 'namespaces' => [ - 'application', - ], - // 配置更新间隔(秒) - 'interval' => 5, + // Apollo Server + 'server' => 'http://127.0.0.1:8080', + // 您的 AppId + 'appid' => 'test', + // 当前应用所在的集群 + 'cluster' => 'default', + // 当前应用需要接入的 Namespace,可配置多个 + 'namespaces' => [ + 'application', ], + // 配置更新间隔(秒) + 'interval' => 5, ]; ```