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 a 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
- Policy sections: inbound
- Policy scopes: global, workspace, product, API, operation
- Gateways: classic, consumption, self-hosted
Usage notes
- We recommend using named values to provide credentials, with secrets protected in a key vault.
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}} />
Related policies
Next steps
For more information about working with policies, see:
- Tutorial: Transform and protect your API
- Policy reference for a full list of policy statements and their settings
- Policy expressions
- Set or edit policies
- Policy samples