Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Han-Ya-Jun committed Jul 5, 2024
1 parent 2ec13a8 commit 01022ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdks/apigw-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ definition.yaml 中可以使用 Django 模版语法引用和渲染变量,内
推荐在一个文件中统一进行定义,用命名空间区分不同配置间的定义,definition.yaml 样例:

目前有两种配置文件版本:spec_version=1/2,主要区别就是stage相关的配置方式上有一些不一样。
新接入系统请使用 spec_version=2, 就有系统如果需要配置多个stage/配置多个backend, 建议也升级到spec_version=2并变更相关yaml配置。
新接入系统请使用 spec_version=2, 旧有系统如果需要配置多个stage/配置多个backend, 建议也升级到spec_version=2并变更相关yaml配置。
区别如下:
spec_version: 1
```yaml
Expand Down Expand Up @@ -123,7 +123,7 @@ stages:
- host: "http://httpbin.org"
weight: 100
```
> 📢 注意:如果之前接入过的,建议将 sepc_version改成 2,并将原先 stage:改成 stages: []
> 📢 注意:如果之前接入过的,建议将 sepc_version改成 2,并将原先 `stage:{}`改成 `stages: []`


整体的样例:
Expand Down Expand Up @@ -176,7 +176,7 @@ stages:
timeout: 60
loadbalance: "roundrobin"
hosts:
# 网关调用后端服务的默认域名或IP,不包含Path,比如: http://api.example.com
# 网关调用后端服务的默认域名或IP,不包含Path,比如: http://api.example.com
- host: ""
weight: 100

Expand All @@ -185,8 +185,8 @@ stages:
timeout: 60
loadbalance: "roundrobin"
hosts:
- host: ""
weight: 100
- host: ""
weight: 100

# 环境插件配置
# plugin_configs:
Expand Down

0 comments on commit 01022ff

Please sign in to comment.