darkSheep404 opened a new issue, #9922:
URL: https://github.com/apache/apisix/issues/9922

   ### Description
   
   hi apisix team:
   request background
   因为有区分内外网隔离环境
   访问外部认证服务器需要走代理从内网服务器从内网出外网
   在Springboot中需要配置代理服务器 like
   ```
   private WebClient buildByProxyClientConnector(WebClient.Builder 
webClientBuilder) {
       return 
webClientBuilder.clientConnector(getProxyReactorClientHttpConnector()).build();
     }
    HttpClient.create(proxyClientProvider())
               .proxy(
                   proxy ->
                       proxy
                           .type(ProxyProvider.Proxy.HTTP)
                           .address(
                               new InetSocketAddress(
                                   webServiceProperties.getProxyHost(),
                                   
Integer.parseInt(webServiceProperties.getProxyPort())))));
   ```
   这样 使用这个Webclient的请求可以走代理服务器到外网
   
   请问apisix是否支持通过配置来实现这一功能
   
   
   
   ### Environment
   
   - APISIX version : apisix:2.12.1-alpine
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to