admin管理员组文章数量:1431997
I have the following Envoy configuration (.yaml) that works perfectly when I proxy to an internal service:
static_resources:
listeners:
- address:
socket_address:
address: 0.0.0.0
port_value: 10000
filter_chains:
- filters:
- name: envoy.filterswork.tcp_proxy
typed_config:
"@type": type.googleapis/envoy.extensions.filterswork.tcp_proxy.v3.TcpProxy
cluster: service-https
stat_prefix: https_passthrough
clusters:
- name: service-https
type: STRICT_DNS
lb_policy: ROUND_ROBIN
load_assignment:
cluster_name: service-https
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: service-https
port_value: 443
This works fine, and I can make requests like:
curl -k :10003/
However, when I change the cluster destination to example, like this:
address: example
I get the following SSL error:
curl -k :10003/
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to 10.0.0.1:10003
I've confirmed that example is accessible from the Envoy instance (outside of Envoy).
Any ideas on why this might be happening, and how I can fix it?
本文标签: curlEnvoy Configuration Error When Proxying to Examplecom SSL ErrorStack Overflow
版权声明:本文标题:curl - Envoy Configuration Error When Proxying to Example.com: SSL Error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745590287a2665154.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论