Using conditions

Conditions use the Varnish Configuration Language (VCL) to define when a configuration object should be applied while processing requests to a cache server. Once you understand some basics about conditions, use this guide to learn about how to create conditions using the Fastly web interface and when to use them.

Where to find conditions

Conditions appear in two areas of Fastly's web interface:

Conditions on the Manage conditions page

The Manage conditions page provides an overview of all the conditions currently available to your service. You can see at a glance which conditions are mapped to configuration objects. It allows you to create new conditions and search for existing ones.

To view conditions on the Manage conditions page:

  1. Log in to the Fastly web interface.
  2. From the Home page, select the appropriate service. You can use the search box to search by ID, name, or domain. You can also click Compute services or CDN services to access a list of services by type.
  3. Click Edit configuration and then select the option to clone the active version.
  4. Click Conditions. A list of all conditions for your service appears.

For example, this service has one request condition available:

the manage conditions page displaying a single, unattached request condition

The Example Request Condition shown above currently isn't applied to a configuration object (as indicated by "Not applied to anything"). If it was, it would instead appear similar to this:

the manage conditions page showing a single, attached request condition with the details hidden

Conditions attached directly to a configuration object

Configuration objects appear differently in the web interface when conditions are attached to them. For example, this request setting has no condition attached to it:

an example request setting without attached condition

Once you click the Attach a condition link to create a new condition or attach an existing condition, however, the web interface changes how the configuration object appears:

an example request setting with an attached condition and the details hidden

By default, configuration objects hide the majority of details for any attached conditions. You can unhide those details by clicking the Show details link. When expanded, the details vary depending on the type of condition.

Parts of a properly configured condition

Conditions require only a few parameters, making them appear deceptively simple. Specifically, they require:

  • a Type parameter that classifies the condition being added. If added via the Manage conditions page, the type can always be manually selected. If added via the Attach a condition link on a configuration object, the type is automatically applied whenever possible.
  • a Name parameter that serves human-readable identifier of the condition.
  • an Apply if statement containing the logical expression to execute in VCL to determine if condition resolves as True or False.

Most problems with conditions occur in the Apply if parameter.

Performing matches on basic logical expressions

Properly configured conditions can perform matches on complicated logical expressions specified in the Apply if parameter. For example:

This logical expression ...Matches when ...
client.ip == "127.0.0.1"The client requesting a resource on your service has the IP 127.0.0.1.
req.http.host == "example.com"The Host header of the incoming request is example.com.
req.method == "POST" && req.url ~ "^/api/articles/"The request is a POST and the URL begins with /api/articles/.

The client.ip, req.http.host, req.method, and req.url conditions shown above all represent configuration variables in VCL.

Using operators to perform matches on complex logical expressions

You could also get creative and create a more complex condition used by Fastly that might have an Apply if parameter that looked like this:

req.http.host == "www.example.com" && (req.url !~ "/foo" && req.url !~ "/bar" && req.url !~ "^/baz")

This condition tells the cache server that the Host should equal www.example.com and the URL cannot match /foo or /bar or /baz. You might use this type of condition when you have multiple variables or options and want to fine-tune your results. In this example, you are indicating that you don't want URLs that contain foo, bar, or baz by using the following operators:

This operator ...Does this ...
( )groups expressions and restricts alteration to part of the regex
&&ensures each equation is true
!~excludes any URLs that include the specified variables

An example of adding conditions

The scenario: You want to add a new origin server that handles a specific portion of your API requests. Some requests to this API must be cached differently than other requests to your API, so you want to set special headers for specific types of requests. Specifically, you don't want your new origin server to cache PUT, POST, or DELETE requests because they're special for this particular API and send back extra, time dependent, meta-information in each response. And finally, you want to track the effectiveness of doing this. To accomplish all of this using conditions via the Fastly web interface, you would:

  1. Create a new origin server to handle the special API traffic.
  2. Create a new condition that tells the cache how to route some of the API requests to that origin server.
  3. Create a new cache setting object to ensure the origin server caches only the correct responses.
  4. Create a new condition that specifies when the cache settings object should be applied.
  5. Create a new header to track the specific type of API requests.
  6. Create a new response condition to make sure that the header is only set on specific type of request.
  7. Check your work.

Create a new origin server

To create a new origin server that will handle the special API traffic, follow the instructions for working with hosts. You'll add specific details about your API server when you fill out the Create a host fields:

  • In the Name field, enter a name for your API server (for example, Special API Server).
  • In the Address field, enter the IP address (or hostname) of the API server.

Create a request condition

Once you've created a new origin server to handle the special API traffic, tell the cache how to route requests to this origin server by creating a request condition.

  1. In the Hosts area, click Attach a condition next to the name of the origin server you just created.

  2. You can either select an available condition or you can click Create a new request condition.

    the new condition window that tells the cache how to route requests to the new Host based on a special URL prefix

  3. Fill out the Create a new request condition fields as follows:

    • In the Name field, enter a descriptive name for the new condition (for example Special API Request).
    • In the Apply if field, enter the appropriate request condition that will be applied (for example, req.url ~ "^/special/" could address all requests related to the special API server).
  4. Click Save and apply to. The new condition for the host is created.

Create a cache settings object

Requests are now are being properly routed to the new origin server. Next, create a cache settings object to ensure Fastly doesn't cache any responses from PUT, POST, or DELETE requests. They're special for this particular API and send back extra, time dependent, meta-information in each response.

  1. Click Settings.
  2. In the Cache Settings area, click the Create cache setting.

    the cache settings window that ensures the backend doesn't cache responses from special requests

  3. Fill out the Create a cache setting fields as follow:

    • In the Name field, enter a descriptive name for the new cache settings.
    • Leave the TTL (seconds) field set to its default value.
    • From the Action menu, select Pass (do not cache).
    • Leave the Stale TTL (seconds) field set to its default value.
  4. Click Create.

Create and apply a condition to the cache settings object

Create a new condition that specifies when the cache settings object should be applied.

  1. In the Cache Settings area, click the Attach a condition link next to the name of the cache setting you just created.

  2. Click Create a new cache condition.

    the new condition window that ensures the cache settings only apply when responses come from the special API

  3. Fill out the Create a new cache condition fields as follows:

    • In the Name field, enter a descriptive name for the new condition (for example, Special API Origin Response).
    • In the Apply if field, enter the appropriate request condition that will be applied (for example, req.method ~ "PUT|POST|DELETE" && beresp.status == 200).
  4. Click Save and apply to. The new condition for the cache setting is created.

Create a new header

To make sure you can track the effectiveness the new API, create a new header so you can use it to gather information about the special API requests as they happen.

  1. Click Content.
  2. In the Headers area, click the Create header button to create a new header.

    the header window that sets a special header for information gathering purposes

  3. Fill out the Create a header fields as follows:

    • In the Name field, enter a descriptive name for the new header (for example, Special API Set Header).
    • From the Type menu, select Response and from the Action menu, select Set.
    • In the Destination field, enter the name of the header that will be affected by the action (for example, http.super).
    • In the Source field, enter a description of the source where the content for this header comes from (for example, "Thanks for asking!").
    • Leave the Ignore if set and Priority fields set to their default settings.
  4. Click Create.

Create a response condition for the new header

Once the header is created, create an associated condition to ensure this header is only set on that special type of request.

  1. In the Headers area, click Attach a condition next to the name of the new header you just created.

    the new condition window that ensures the new header only applied when responses come from the special API

  2. Fill out the Create a new response condition fields as follows:

    • In the Name field, enter a descriptive name for the new condition (for example, Special API Response Condition).
    • In the Apply if field, enter the appropriate request condition that will be applied (for example, req.url ~ "^/special" && resp.status == 200).
  3. Click Save and apply to. The new condition for the header is created.

Check your work

Before activating the configuration, review the generated VCL to see how Fastly converted the objects and conditions into actual VCL. For the example shown above, the VCL for the request condition appears as:

1# Condition: Special API Request Prio: 10
2if (req.url ~ "^/special/") {
3 set req.backend = F_Special_API_Server;
4}
5#end condition

The cache settings and condition VCL appears as:

1if (req.method ~ "PUT|POST|DELETE" && beresp.status == 200) {
2 set beresp.ttl = 0s;
3 set beresp.grace = 0s;
4 return(pass);
5}

And the new header response condition VCL appears as:

1# Condition Special API Response Condition Prio: 10
2if (req.url ~ "^/special" && resp.status == 200) {
3
4 # Header rewrite Special API Set Header: 10
5 set resp.http.super = "Thanks for asking!";
6}

As you become more familiar with the VCL syntax and programming, look at the generated VCL to see if the configuration is doing what you think it is doing (most VCL is pretty simple once you know what the variables are referring to).

Was this guide helpful?

Do not use this form to send sensitive information. If you need assistance, contact support. This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.