Skip to content

Extending Cloudflare's Benefits to SaaS Providers' End-Customers

Introduction

A key aspect of developing a Software-as-a-service (SaaS) application is ensuring its security against the wide array of potential attacks it faces on the Internet. Cloudflare’s network and security services can be used to protect your customers using your SaaS application, off-loading the risk to a vendor with experience in protecting applications.

This design guide illustrates how providers, building and hosting their own product/application offering, can leverage Cloudflare to extend the security, performance, and compliance benefits of Cloudflare’s network to their end-customers.

The following diagrams visualize the use of the following services:

This setup is ideal for SaaS providers who need to ensure minimal downtime, auto-renewal of SSL/TLS certificates, efficiently distribute traffic to healthy endpoints, and regional traffic management for compliance and performance optimization.

This document assumes that the provider’s application DNS is registered and managed through Cloudflare as the primary and authoritative DNS provider. You can find details on how to set this up in the Cloudflare DNS Zone Setup Guide.

This solution supports subdomains under your own zone while also allowing your customers to use their own domain names (vanity or custom domains) with your services. For example, for each customer you may create the custom hostname mycustomer.myappexample.com but also want to allow them to use their own domain, app.mycustomerexample.com to point to their tenant on your service. Each subdomain (mycustomer.myappexample.com) can be created on the main domain (myappexample.com) through the Cloudflare API, allowing you to easily automate the creation of DNS records when your customers create an account on your service.

Benefits

Before looking at how Cloudflare can be configured to protect your SaaS application through your custom hostnames, it’s worth reviewing the benefits of taking this approach.

BenefitDescription
Minimized DowntimeEnsure minimal downtime not only during custom hostname migrations to Cloudflare for SaaS but also throughout the entire lifecycle of the application.
Security and PerformanceExtends Cloudflare’s security and performance benefits to end-customers through their custom domains.
Auto-RenewalAutomates the renewal and management process for custom hostname certificates.
Apex ProxyingSupports end-customers using domain apex (otherwise known as root domain) as custom hostnames. Used where your DNS service doesn’t allow CNAMEs for root domains, instead a static IP is used to allow an A record to be used.
Smart Load BalancingUse the load balancer as custom origins to steer traffic with session affinity. In the context of Cloudflare for SaaS, a custom origin lets you send traffic from one or more custom hostnames to somewhere besides your default proxy fallback origin.
Orange-to-Orange (O2O)For end-customers who already proxy traffic through Cloudflare, Orange-to-Orange (O2O) may be required. Generally, it’s recommended for those end-customers to not proxy the hostnames used by the SaaS provider. If the Orange-to-Orange functionality is required, please review the product compatibility.
Regional ServicesAllows regional traffic management to comply with data localization requirements.

Products included in this guide

The following products are used to deliver this solution.

ProductFunction
Cloudflare for SaaSExtends the security and performance benefits of Cloudflare’s network to your customers through their own custom or vanity domains. This includes Certificate Management, WAF for SaaS, Early Hints for SaaS and Cache for SaaS.
DDoS ProtectionVolumetric attack protection is automatically enabled for proxied hostnames.
Regional Services (part of the Data Localization Suite)Restrict inspection of data (processing) to only those data centers within jurisdictional boundaries.
Load BalancerDistributes traffic across your endpoints, which reduces endpoint strain and latency and improves the experience for end users.
Cloudflare TunnelSecure method to connect to customers’ networks and servers without creating holes in firewalls. cloudflared is the daemon (software) installed on origin servers to create a secure tunnel from applications back to Cloudflare.

Cloudflare for SaaS Examples

The primary objective of using Cloudflare is to ensure that all requests to your application’s custom hostname are routed through Cloudflare’s security and performance services first to apply security controls and routing or load balancing of traffic. Since the origin server often needs to be publicly accessible, securing the connection between Cloudflare and the origin server is crucial. For comprehensive guidance on securing origin servers, please refer to Cloudflare’s documentation: Protect your origin server.

The diagrams below begin by illustrating the simplest approach to achieving this goal, followed by more complex configurations.

Standard Fallback Origin Setup

This standard Cloudflare for SaaS setup is the most commonly used and easiest to implement for most providers. Typically, these providers are SaaS companies, which develop and deliver software as a service solutions. This setup requires only a single DNS record to direct requests to Cloudflare, which then proxies the traffic to your application using an A record.

Figure 1: Standard Fallback Origin Setup.

  1. The custom hostname (custom.example.com) is configured as a CNAME record pointing to the fallback origin of the provider. The fallback origin is the server or servers that Cloudflare will route traffic to by default when a request is made to the custom hostname. This DNS record does not need to be managed within Cloudflare; it just needs to point to the Cloudflare-hosted record from the provider (fallback.myappexample.com).
  2. The Fallback Origin is set up as an A record that points to the public IP address of the origin server. Cloudflare will route traffic sent to the custom hostnames to this origin server by default.

The origin server receives the details of the custom domain through either the host header or SNI. This enables the origin server to determine which application to direct the request to. This method is applicable for both custom hostnames (for example, app.mycustomerexample.com) and vanity domains (for example, customer1.myappexample.com). Since all requests for your application are now routed through the Cloudflare network, you can leverage a range of security and performance services for every request, including:

For implementation details to get started, review the developer documentation.

Standard Fallback Origin Setup with Regional Services

This approach introduces using Cloudflare’s Regional Services solution to regionalize TLS termination and HTTP processing to confirm with any compliance regulations that dictate your service process data in specific geographic locations. This ensures that traffic destined for the origin server is handled exclusively within the chosen region.

Figure 2: Standard Fallback Origin Setup with Regional Services.

  1. The Custom Hostname (custom.example.com) is configured as a CNAME record that points to a regionalized SaaS hostname (eu-customers.myappexample.com). This configuration ensures that all processing, including TLS termination, occurs exclusively within the specified geographic region.
  2. The regionalized SaaS hostname is set up as a CNAME record that directs traffic to the standard Fallback Origin of the SaaS provider (fallback.myappexample.com).
  3. The Fallback Origin is set up as an A record that points to the public IP address of the origin server. Cloudflare will route traffic sent to the custom hostnames to this origin server by default.

Cloudflare Tunnel as Fallback Origin Setup with Regional Services

For enhanced security, rather than exposing your application servers directly to the Internet via public IPs, SaaS providers can use Cloudflare Tunnels. These tunnels connect your network to Cloudflare’s nearest data centers, allowing SaaS applications to be accessed through public hostnames. As a result, Cloudflare becomes the sole entry point for end-customers from the public Internet into your application network.

Figure 3: Cloudflare Tunnel as Fallback Origin Setup with Regional Services.

  1. The Custom Hostname (custom.example.com) is configured as a CNAME record that points to a regionalized SaaS hostname (eu-customers.myappexample.com). This configuration ensures that all processing, including TLS termination, occurs exclusively within the specified geographic region.
  2. The regionalized SaaS hostname is set up as a CNAME record that directs traffic to the standard Fallback Origin of the SaaS provider (fallback.myappexample.com).
  3. The Fallback Origin is a CNAME DNS record that points to a public hostname exposed by Cloudflare Tunnel. This public hostname should be configured to route traffic to your application (e.g., localhost:8080).

This setup is ideal for SaaS providers that do not need granular load balancing, such as geo-based traffic steering, across multiple origin servers. It’s also well-suited for simple testing and development environments, where protecting your origin server by only allowing requests through the Cloudflare Tunnel is sufficient. However, for distributed applications requiring load balancing at both global and local levels, we recommend using Cloudflare’s Load Balancer with global and local traffic management capabilities.

Global Traffic Management (GTM) & Local Traffic Management (LTM) as Custom Origin Setup

Cloudflare offers a powerful set of load balancing capabilities. These allow you to reliably steer traffic to different origin servers where your SaaS applications are hosted, whether through public hostnames (as described above) or private IP addresses. This setup helps prevent origin overload by distributing traffic across multiple servers and enhances security by only permitting requests through the Cloudflare Tunnel.

Figure 4: Global Traffic Management (GTM) & Local Traffic Management (LTM) as Custom Origin Setup.

  1. The Custom Hostname (custom.example.com) is configured as a CNAME record pointing to a Cloudflare regionalized Load Balancer (eu-lb.myappexample.com). This ensures that all processing, including TLS termination, takes place within a specified geographic region. Additionally, the SaaS provider needs to set up the load balancer as the Custom Origin for the Custom Hostname.
  2. The regional Load Balancer is set up with Origin Pools to distribute requests across multiple downstream servers. Each pool can be configured to use either public hostnames with Global Traffic Management (GTM) or private network addresses with Local Traffic Management (LTM). In the diagram above, we utilize both options:
    • Origin Pool 1 uses the Cloudflare Tunnel hostname (<UUID>.cfargotunnel.com) as the endpoint or origin server for handling those requests. When using a public hostname, it is necessary to set the HTTP Host Header value to match the public hostname configured and exposed by the Cloudflare Tunnel. This ensures that the origin server can correctly route the incoming requests.
    • Origin Pool 2 uses the private IP address or private network (that is, 10.0.0.5) within the SaaS provider’s internal network, where the SaaS application resides. This pool must be configured to operate within the specified Virtual Network to ensure proper routing of requests.
  3. Cloudflare Tunnel exposes both public hostnames with GTM and private networks (private IPs) with LTM.

For enhanced granularity in application serving and scalability, it is generally recommended to use private networks rather than public hostnames. Private networks enable Cloudflare to preserve and accurately pass the host header to the origin server. In contrast, when using public hostnames, providers must configure the header value on the load balancer, which is restricted to one public hostname per load balancer endpoint, potentially limiting flexibility.

Be aware of the Zero Trust Tunnel limitations, Cloudflare for SaaS connection request details, and the Custom Origin SNI specification. For further information about the Cloudflare Load Balancer, review its reference architecture.

Automation

As a SaaS provider, it is advisable to automate most, if not all, of these processes using APIs, SDKs, scripts, Terraform, or other automation tools.

An example of a high-level migration plan can be downloaded here.

It is highly recommended to migrate to Cloudflare for SaaS in phases and address any issues as they arise, particularly with Domain Control Validation (DCV). Be sure to review the validation status and relevant documentation during the process.

Summary

By leveraging Cloudflare’s infrastructure, SaaS providers can deliver secure, reliable, and performance services to their end-customers. This ensures a seamless and secure user experience while meeting compliance requirements, such as regionalization.

Several Cloudflare customers are currently using the Cloudflare for SaaS solution (formerly known as SSL for SaaS). Notable public use cases include:

Additionally, when migrating to Cloudflare for SaaS, it is crucial to have a runbook and clear public documentation to communicate relevant details to your end-customers. Excellent public examples of this are the Salesforce CDN and Shopify documentation.