Updated on 2024-12-12 GMT+08:00

Forwarding Policy

Scenarios

You can configure forwarding policies for HTTP or HTTPS listeners to forward requests to different backend server groups based on domain names or paths.

This is suitable when requests of services such as videos, images, audios, and texts need to be forwarded to different backend servers.

A forwarding policy consists of two parts: forwarding rule and action.

  • A forwarding rule can be a domain name or a path.
  • HTTP listeners can forward requests to a backend server group or redirect requests to another listener.
  • HTTPS listeners can forward requests to a backend server group.

How Requests Are Matched

  • After receiving a request, the load balancer attempts to find a matching forwarding policy based on the domain name or URL in the request:
    • If a match is found, the request is forwarded to the backend server group you select or create when you add the forwarding policy.
    • If no match is found, the request is forwarded to the default backend server group (that is specified when the listener is created).
  • Matching priority:
    • Forwarding rule priorities are independent of each other regardless of domain names. When a request matches both a domain name-based rule and a path-based rule, the domain named-based rule is matched first.
    • Path-based forwarding rules are applied in the following order of priority: an exact match rule, a prefix match rule, and a regular expression match rule. For multiple matches of the same type, only the longest path rule will be applied.
Table 1 Example forwarding policies

Request

Forwarding Policy

Forwarding Rule

Specified Value

www.elb.com/test

1

Path

/test

2

Domain name

www.elb.com

In this example, although request www.elb.com/test matches both forwarding policies, it is routed based on forwarding policy 2 because domain named-based forwarding rules are applied first.

Notes and Constraints

  • Forwarding policies can be configured only for HTTP and HTTPS listeners.
  • Forwarding policies must be unique.
  • A maximum of 100 forwarding policies can be configured for a listener. If the number of forwarding policies exceeds the quota, the excess forwarding policies will not be applied.
  • When you add a forwarding policy, note the following:
    • The path in a forwarding rule cannot contain query strings. For example, if the path is set to /path/resource?name=value, the forwarding policy is invalid.
    • Each path must exist on the backend server. If the path does not exist, the backend server will return 404 Not Found.
    • In the regular expression match, the characters are matched sequentially, and the matching ends when any rule is matched. Matching rules cannot overlap with each other.
    • A path cannot be configured for two forwarding policies.
    • A domain name cannot exceed 100 characters.

If you add a forwarding policy that is the same as an existing one by calling an API, there will be a conflict. Even if you delete the existing forwarding policy, the new forwarding policy is still unavailable. Delete the newly-added forwarding policy and add a different one.

Adding a Forwarding Policy

  1. Go to the load balancer list page.
  2. On the displayed page, locate the load balancer you want to add forwarding policies for and click its name.
  3. On the Listeners tab, add a forwarding policy in either of the following ways:
    • Locate the target listener and click Add/Edit Forwarding Policy in the Forwarding Policies column.
    • Locate the target listener, click its name, and click the Forwarding Policies tab.
  4. Click Add Forwarding Policy. Configure the parameters based on Table 2.
  5. After the configuration is complete, click Save.
Table 2 Forwarding policy parameters

Parameter

Description

Example Value

Forwarding Rule

Domain name

Specifies the domain name that will be exactly matched against the domain names in requests.

You need to specify either a domain name or path.

www.test.com

Path

  • Description

    Specifies the path used for forwarding requests. A path can contain letters, digits, and special characters: _~';@^-%#$.*+?,=!:|\/()[]{}

  • Matching rules
    • Exact match: The request path is the same as the specified path and must start with a slash (/).
    • Prefix match: The request path starts with the specified path and must start with a slash (/).
    • Regular expression match: The paths are matched using a regular expression.

/login.php

Action

Forward to a backend server group

Specifies the backend server group to which a request is routed if it matches the configured forwarding rule.

Forward to a backend server group

Redirect to another listener

Specifies the HTTPS listener to which a request is routed if it matches the configured forwarding rule.

This action can be configured only for HTTP listeners.

NOTE:

If you select Redirect to another listener, the HTTP listener will redirect requests to the specified HTTPS listener, but access control configured for the HTTP listener still takes effect.

For example, if you configure a redirect for an HTTP listener, HTTP requests to access a web page will be redirected to the HTTPS listener you select and handled by the backend servers associated with the HTTPS listener. As a result, the clients access the web page over HTTPS. The configuration of the HTTP listener will become invalid.

N/A

Backend Server Group

Select a backend server group that will receive requests from the load balancer.

This parameter is mandatory when you set Action to Forward to a backend server group.

N/A

Listener

Select an HTTPS listener that will receive requests redirected from the current HTTP listener.

This parameter is mandatory when Action is set to Redirect to another listener.

N/A

Path Matching Examples

The following table lists how a path is matched, and Figure 1 shows how a request is forwarded to a backend server group.

Table 3 Path matching examples

URL Matching Rule

URL in the Request

Specified Path

N/A

N/A

/elb/index.html

/elb

/elb[^\s]*

/index.html

Exact match

/elb/index.html

N/A

N/A

N/A

Prefix match

N/A

N/A

Regular expression match

N/A

N/A

Figure 1 Request forwarding

In this figure, the system first searches for an exact match of the request URL (/elb_gls/glossary.html). If there is no exact match, the system searches for a prefix match. If a match is found, the request is forwarded to backend server group 2 even if a regular expression match is also found, because the prefix match has a higher priority.

Modifying a Forwarding Policy

  1. Go to the load balancer list page.
  2. On the displayed page, locate the load balancer whose forwarding policies you want to modify and click its name.
  3. Click Listeners, locate the listener, and click its name.
  4. On the Forwarding Policies tab, select the forwarding policy, and click Edit.
  5. Modify the parameters and click Save.

Deleting a Forwarding Policy

  1. Go to the load balancer list page.
  2. On the displayed page, locate the load balancer whose forwarding policies you want to delete and click its name.
  3. Click Listeners, locate the listener, and click its name.
  4. On the Forwarding Policies tab, select the forwarding policy, and click Delete on the top right.
  5. In the displayed dialog box, click OK.