Skip to main content
Varnish is a popular HTTP proxy server, often used for caching. You usually don’t need it with Upsun as the standard router includes HTTP cache and a CDN would cover more advanced uses. But you can include Varnish as a service.

Supported versions

You can select the major and minor version. Patch versions are applied periodically for bug fixes and the like. When you deploy your app, you always get the latest available patches.

How it works

All incoming requests go through the standard router. The Varnish service sits between the router and all apps in the project.

Usage example

1. Configure the service

To define the service, use the varnish type: Note that changing the name of the service replaces it with a brand new service and all existing data is lost. Back up your data before changing the service. The relationships block defines the connection between Varnish and your app. You can define RELATIONSHIP_NAME as you like. APP_NAME should match your app’s name in the app configuration. The configuration block must reference a VCL file inside the .upsun/ directory. The path defines the file relative to the .upsun/ directory.

Example configuration

Notice the relationship (application) defined for the service varnish granting access to the application container myapp.

2. Create a VCL template

To tell Varnish how to handle traffic, in the .upsun/ directory add a Varnish Configuration Language (VCL) template. This template is supplemented by automatic additions from Upsun. So you MUST NOT include certain features that you might elsewhere:
  • A vcl_init() function: The function is automatically generated based on the relationships you defined in Step 1. Each defined relationship results in a backend with the same name.
  • The VCL version at the start: This is automatically generated.
  • Imports for std or directors: These are already imported. You can import other modules.
The file MUST include:
  • A definition of which backend to use in a vcl_recv() subroutine.
The logic varies based on whether you have one or more apps.
Misconfigured VCL files can result in incorrect and confusing behavior that’s hard to debug. Upsun doesn’t help with VCL configuration options beyond the basic connection logic documented here.You can see any compilation errors with the stats endpoint.

Example VCL template with one app

To serve one app, your VCL template needs at least the following function: Where RELATIONSHIP_NAME is the name of the relationship you defined in Step 1. With the example configuration, that would be the following:

Example VCL template with multiple apps

If you have multiple apps fronted by the same Varnish instance, your VCL templates needs logic to determine where each request is forwarded. For example, you might have the following configuration for two apps: You could then define that all requests to /blog/ go to the blog app and all other requests to the other app:
sub vcl_recv {
  if (req.url ~ "^/blog/") {
      set req.backend_hint = blog.backend();
  } else {
      set req.backend_hint = main.backend();
  }
}

3. Route incoming requests to Varnish

Edit your route definitions to point to the Varnish service you just created. Also disable the router cache as Varnish now provides caching. To forward all incoming requests to Varnish rather than your app, you could have the following:
.upsun/config.yaml
routes:
  "https://{default}/":
    type: upstream
    upstream: "varnish:http"
    cache:
      enabled: false
Varnish forwards requests to your app based on the specified VCL template.

Include modules

You can include the following optional modules in your VCL templates to add additional features:
  • cookie
  • header
  • saintmode
  • softpurge
  • tcp
  • var
  • vsthrottle
  • xkey
To use them, add an import to your template such as the following:
import xkey;

Circular relationships

At this time, Upsun doesn’t support circular relationships between services and apps. That means you can’t add a relationship from an app fronted by Varnish to the Varnish service. If you do so, then one of the relationships is skipped and the connection doesn’t work.

Rate limit connections

Sometimes you want to ensure that users, whether human or machine, can’t overload your app with requests. One tool to help is using Varnish to limit the rate at which connections can be made. For example, say you want to make sure no one can make more than 20 requests within 10 seconds. If they do, you want to block them from any more requests for 2 minutes. To do so, import the vsthrottle module and add logic similar to the following to your VCL template:
import vsthrottle;

sub vcl_recv {
  # The Upsun router provides the real client IP as X-Client-IP
  # This replaces client.identity in other implementations
  if (vsthrottle.is_denied(req.http.X-Client-IP, 20, 10s, 120s)) {
    # Client has exceeded 20 requests in 10 seconds.
    # When this happens, block that IP for the next 120 seconds.
    return (synth(429, "Too Many Requests"));
  }

  # Set the standard backend for handling requests that aren't limited
  set req.backend_hint = application.backend();
}

Clear cache with a push

You may want at times to clear a specific part of your cache when you know the content is outdated. With Varnish, you can clear the content with purging and banning. The following example shows how to set up purging.
  1. Add an access control list to your VCL template:
    acl purge {
        "localhost";
        "192.0.2.0"/24;
    }
    
    This list ensures that only requests from the listed IPs are accepted. Choose which IPs to allow. If you are sending requests from an app, checkout the outbound IPs for the region. Alternatively, you could code in a token that must be sent with the request.
  2. Add purge handling:
    sub vcl_recv {
        if (req.method == "PURGE") {
            # The Upsun router provides the real client IP as X-Client-IP
            # Use std.ip to convert the string to an IP for comparison
            if (!std.ip(req.http.X-Client-IP, "0.0.0.0") ~ purge) {
                # Deny all purge requests not from the allowed IPs
                return(synth(403,"Not allowed."));
            }
            # Purge cache for allowed requests
            return (purge);
        }
        ...
    }
    
The snippet above has been produced for Varnish 7.x. If using a different version, consult the Varnish documentation for potential differences in syntax and required parameters.
  1. Set up cache purging to suit your needs. The following cURL call gives an example of how this can work: Where URL_TO_PURGE is the URL of the content you want to purge.

Stats endpoint

The Varnish service also offers an http+stats endpoint, which provides access to some Varnish analysis and debugging tools. You can’t use it from an app fronted by Varnish because of the restriction with circular relationships. To access the stats, create a separate app (stats-app) with a relationship to Varnish, but not from it. Define app configuration similar to the following: You choose any valid name and type. When the app is deployed, the app can access the Varnish service over HTTP to get diagnostic information. The following paths are available:
  • /: returns any error logged when generating the VCL template failed
  • /config: returns the generated VCL template
  • /stats: returns the output of varnishstat
  • /logs: returns a streaming response of varnishlog
To access the Varnish stats endpoint from the command line:
  1. Connect to your stats app using SSH: upsun ssh --app stats-app (replace stats-app with the name you gave the app).
  2. Display the relationships array with echo $PLATFORM_RELATIONSHIPS | base64 -d | jq .,
  3. Query Varnish with curl HOST:PORT/stats, replacing HOST and PATH with the values from Step 2.
Last modified on March 11, 2026