Set HTTP proxy

APPLIES TO: All API Management tiers

The proxy policy allows you to route requests forwarded to backends via an HTTP proxy. Only HTTP (not HTTPS) is supported between the gateway and the proxy. Basic and NTLM authentication only.

Note

Set the policy's elements and child elements in the order provided in the policy statement. Learn more about how to set or edit API Management policies.

Policy statement

<proxy url="http://hostname-or-ip:port" username="username" password="password" />

Attributes

Attribute Description Required Default
url Proxy URL in the form of http://host:port. Policy expressions are allowed. Yes N/A
username Username to be used for authentication with the proxy. Policy expressions are allowed. No N/A
password Password to be used for authentication with the proxy. Policy expressions are allowed. No N/A

Usage

Example

In this example, named values are used for the username and password to avoid storing sensitive information in the policy document.

<proxy url="http://192.168.1.1:8080" username={{username}} password={{password}} />

For more information about working with policies, see: