我正在尝试评估apigee边缘平台。是否有可能在api使用者和apigee服务器之间使用双向ssl (这对我们来说是一个特例,尽管它在API世界中没有太多意义)。
谢谢。
发布于 2014-07-09 09:23:36
这绝对是有可能的。您可以像TargetEndpoint提到的in the apigee docs那样配置VirtualHost。如果您是云客户(免费或付费),则需要联系Apigee的支持团队,因为云中的虚拟主机配置已锁定。
VirtualHost的示例配置(使用与TargetEndpoint相同的<SSLInfo>配置):
<VirtualHost name="secure">
<HostAliases>
<HostAlias>myOrg-test.apigee.net</HostAlias>
</HostAliases>
<Port>443</Port>
<SSLInfo>
<Enabled>true</Enabled>
<ClientAuthEnabled>true</ClientAuthEnabled>
<IgnoreValidationErrors>false</IgnoreValidationErrors>
<KeyAlias>myKeyAlias</KeyAlias>
<KeyStore>myKeystore</KeyStore>
<TrustStore>myTruststore</TrustStore>
</SSLInfo>
</VirtualHost>https://stackoverflow.com/questions/24624032
复制相似问题