Skip to main content
Middleware scripts act as intermediaries within the CDN request workflow, allowing you to insert custom logic that modifies requests or responses as they pass through the CDN.

Use cases

  • Authentication and authorization — Verify credentials and manage session tokens at the edge
  • Header injection and manipulation — Add, modify, or remove HTTP headers on requests and responses
  • Response body transformation — Rewrite HTML, inject scripts, or modify content before delivery
  • A/B testing and feature flags — Route users to different versions based on headers or cookies
  • Request routing and redirects — Direct traffic based on path, geolocation, or custom logic
  • Security enhancements — Implement rate limiting, IP filtering, or bot protection

Benefits

Middleware scripts provide the flexibility to integrate complex logic into the CDN request flow without modifying backend infrastructure. By processing requests and responses directly at the edge, these scripts improve the overall speed and efficiency of content delivery while reducing reliance on backend processing power.

The servePullZone function

The servePullZone function creates a middleware handler that integrates with your Pull Zone. It returns a chainable object for adding request and response middleware.

Function signature

The url option is only used during local development. When deployed to bunny.net, requests are proxied to the origin configured in your Pull Zone settings.

Middleware methods

The servePullZone function returns a PullZoneHandler object with chainable middleware methods:

onClientRequest

Preview
If your PullZone is configured to execute script before cache, you’ll have access to this function.
Intercepts requests before they are sent to the cache. You can modify the request or short-circuit by returning a response directly.
Return value:
  • Return Promise<Request> to continue to the origin with the (modified) request
  • Return Promise<Response> to short-circuit and respond immediately without hitting the cache

onClientResponse

Preview
If your PullZone is configured to execute script before cache, you’ll have access to this function.
Intercepts requests before they are returned to the user even after you return a cached response.
Return value:
  • Return Promise<Response> or Response with the (modified) response to send to the client.

onOriginRequest

Intercepts requests before they are sent to the origin server. You can modify the request or short-circuit by returning a response directly.
Return value:
  • Return Promise<Request> to continue to the origin with the (modified) request
  • Return Promise<Response> to short-circuit and respond immediately without hitting the origin

onOriginResponse

Intercepts responses from the origin server before they are sent to the client. Modifications occur before the response is cached.
Return value:
  • Return Promise<Response> with the (modified) response to send to the client

Enable Before Cache Scripts

Preview To enable Middleware script to run before cache, you’ll need to enable it at your PullZone level. Navigate to your Pull Zone, then go to General > Origin and enable Run script before cache.
Learn more about before cache execution.

Workflow

When a client makes a request to a Pull Zone, the request passes through middleware at different stages:
If your PullZone is configured to execute script before cache, you’ll run the onClientRequest and onClientResponse if those are registered.
  1. onClientRequest - Called before the request is sent to the cache. Modify the request or return a response to short-circuit.
  2. onOriginRequest - Called before the request is sent to the origin (so if the cache is giving a MISS). Modify the request or return a response to short-circuit.
  3. Origin fetch - The request is sent to your origin server.
  4. onOriginResponse - Called after the origin responds. Modify the response before it’s sent to the client and cached.
  5. onClientResponse - Called just before a Response is sent to the client expect if you short circuit it at the onClientRequest layer.

Example

This example implements access control based on feature flags and adds a custom header to responses:

Local development

You can run middleware scripts locally using Deno:
Test with curl:
Last modified on July 28, 2026