所以我有一个带有API管理器和两个网关工作人员的集群环境(网关在负载均衡器上)和两个身份服务器作为密钥管理器(负载均衡器)。
在配置以下代码时我感到困惑。
<Environment type="hybrid" api-console="true">
<Name>Production and Sandbox</Name>
<Description>This is a hybrid gateway that handles both production and sandbox token traffic.</Description>
<!-- Server URL of the API gateway -->
<ServerURL>https://gatemgrdev.byui.edu/services/</ServerURL>
<!-- Admin username for the API gateway. -->
<Username>${admin.username}</Username>
<!-- Admin password for the API gateway.-->
<Password>${admin.password}</Password>
<!-- Endpoint URLs for the APIs hosted in this API gateway.-->
<GatewayEndpoint>http://${carbon.local.ip}:${http.nio.port},https://${carbon.local.ip}:${https.nio.port}</GatewayEndpoint>
</Environment>
</Environments>
</APIGateway>
在我的身份服务器中,我通常将服务器URL指向我的API管理器。像这样
<ServerURL>https://apimgr.org/services/</ServerURL>
在我的API管理器中,我通常会将配置更改为此
<GatewayEndpoint>http://gateworker.org,https://gateworker.org</GatewayEndpoint>
那么我应该如何配置网关工作人员?我必须对他们做什么吗?另外,我是否正确配置了上述两个?
答案 0 :(得分:2)
您可以从[1]
中找到网关配置感谢
Isura。