Configure forward proxying for API proxies Stay organized with collections Save and categorize content based on your preferences.
Forward proxies provide a single point through which multiple machines send requests to an external server. They can enforce security policies, log and analyze requests, and perform other actions so that requests adhere to your business rules. With Apigee hybrid, you can configure a forward proxy that intermediates your API proxies and an external TargetEndpoint (a backend target server).
To use an HTTP forward proxy between hybrid and the TargetEndpoint, you must configure the outbound proxy settings in your overrides file. These environment-scoped properties route target requests from hybrid to the HTTP forward proxy. You also need to ensureuse.proxy is set to "true" for any TargetEndpoint that you want to go through an HTTP forward proxy. See the bottom of the page for instructions.
To configure a hybrid environment for forwarding proxying, add theenvs.httpProxy property to your overrides file and apply it to the cluster. For example:
envs: - name: test httpProxy: scheme: HTTP host: 10.12.0.47 port: 3128 ...
scheme can be HTTP or HTTPSand must be uppercase.For details on each of theenvs.httpProxy configuration properties refer to theConfiguration property reference.
Forward proxying is configured for an environment; all traffic going from API proxies in that environment to backend targets goes through the specified HTTP forward proxy. If the traffic for a specific target of an API proxy should go directly to the backend target, bypassing the forward proxy, then set the following property in the TargetEndpoint to override the HTTP forward proxy:
<Property name="use.proxy">false</Property>
For more information on setting the TargetEndpoint properties, including how to configure the connection to the target endpoint, seeEndpoint properties reference.
Setuse.proxy to "true" for any TargetEndpoint that you want to go through an HTTP forward proxy:
<Property name="use.proxy">true</Property>
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-17 UTC.