Support forward proxies with CONNECT
See original GitHub issueIs there a way to specify a proxy connection when specifying the host and port with the NettyChannelBuilder?
originChannel = NettyChannelBuilder.forAddress(host, port)
.sslContext(GrpcSslContexts.forClient().build())
.build();
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Proxy servers and tunneling - HTTP - MDN Web Docs
Forwarding client information through proxies ... Proxies can make requests appear as if they originated from the proxy's IP address. This can be ......
Read more >Configuring agents to communicate through a forward proxy
When a forward proxy is used, the agent first opens a TCP connection with the proxy. The agent sends an HTTP CONNECT request...
Read more >What is a Reverse Proxy Server - Imperva
A reverse proxy server is an intermediate connection point positioned at a ... In contrast, a forward proxy server is also positioned at...
Read more >Forward Proxy Advanced plugin - Kong Docs
The Forward Proxy plugin allows Kong to connect to intermediary transparent HTTP proxies, instead of directly to the upstream_url, when forwarding requests ...
Read more >Manual Chapter: Remote Access Forward Proxy Configurations
Before you start to create a configuration in which Access Policy Manager ® (APM ® ) acts as an explicit forward proxy to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is blocked by #4029. You can use GRPC_PROXY_EXP=host:port environment variable today. But the final solution is to use Java’s ProxySelector. Today, it works for custom ProxySelectors that return resolved addresses. That issue will resolve selectors returning non-resolved addresses when using Netty.
This was resolved in #4137. grpc observes the default Java proxy settings.