wso2 api-集群环境的管理器配置

wso2 api-manager configurations for cluster environment

环境

所以我有一个集群环境,其中有一个 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>

那么网关workers应该怎么配置呢?我必须对他们做些什么吗?另外,我是否正确配置了以上两个?

您可以从 [1]

中找到网关配置

[1] https://docs.wso2.com/display/AM210/Clustering+the+API+Manager#ClusteringtheAPIManager-ConfiguringtheGateway

谢谢
伊苏拉。