英文:
Apigee Edge SSL Handshake failed for TCP
问题
我正在使用Apigee通过代理连接到一个端点,我已将目标端点URL配置为'https://hostname/api'。然而,我遇到了SSL握手错误,错误消息如下:'SSL Handshake failed for TCP xxx.xxx.xxx.xxx:443'。
我是Apigee的新手,不确定如何解决这个问题。我尝试在Nginx中使用相同的设置,并通过配置选项'proxy_ssl_server_name on'解决了该问题。
关于如何在Apigee中解决这个问题的任何建议将不胜感激。提前感谢您的帮助
<HTTPTargetConnection>
<SSLInfo>
<Enabled>true</Enabled>
</SSLInfo>
<URL>https://xxxxxx.com</URL>
</HTTPTargetConnection>
英文:
I'm using Apigee to connect to an endpoint via a proxy, and I have configured the target endpoint URL as 'https://hostname/api'. However, I'm getting an SSL handshake error with the following message: 'SSL Handshake failed for TCP xxx.xxx.xxx.xxx:443'.
I'm new to Apigee and not sure how to fix this issue. I tried the same setup with Nginx and resolved the issue with the 'proxy_ssl_server_name on' configuration option.
Any suggestions on how to fix this issue with Apigee would be appreciated. Thank you in advance for your help
<HTTPTargetConnection>
<SSLInfo>
<Enabled>true</Enabled>
</SSLInfo>
<URL>https://xxxxxx.com</URL>
</HTTPTargetConnection>
答案1
得分: 0
你好,非常感谢您的回答。我们已经能够确定这个问题与F5有关,而不是Apigee。 F5的设置未正确配置以支持SNI验证部分。
英文:
Hi all thank you very much for your answers we are able to find out that this issue is related to F5, not Apigee. F5 setup is not correctly configured to support the SNI validation part
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论