A valuable feature of modern SaaS software is the ability for a customer to use their own branding. They usually have two options, Managed Subdomains and Custom Domains. Here is an overview of those options, and how to implement them from the SaaS side.

In this example, we have Aiden’s Software Business, and I want to host simple blog sites for my clients. My example business domain will be mysaas.com. My customers want easy setup and full custom branding, no redirects or links to anything outside of their domain.

I’ll use this basic struct. Your actual software will be far more complex and/or structure things differently.

type Site struct {
    //Generated on creation, should look like "vh5o4u1rd" or custom like "aiden"
    ManagedSubdomain string
    //Customer Supplied, should look like "example.com"
    CustomDomain string
    //If the Domain has properly set up DNS verification
    DomainVerified bool
    //The expected value of the TXT record
    DomainVerificationValue string
    //The time that our system first verified the DNS record
    DomainVerifiedTime time.Time

    //You may want to manage these seperately, depends on business logic
    ManagedSubdomainPublished bool
    CustomDomainPublished bool
}

Managed Subdomain

Typically, this option is the easiest for the customer to configure. For every “Site”, the customer will have the ability to claim a specific subdomain of their choosing. A Managed Subdomain would look like {name}.mysaas.com, where name is a unique identifier choosable by your customers. These names must be unique, and are usually first-come, first-serve. When a “Site” is created it recieves a unique random subdomain. You can see this in Site.ManagedSubdomain.

It may or may not start as publicly available. The site availability can be controlled with the ManagedSubdomainPublished field.

There are a few things you need to check when letting a customer claim their subdomain. You need to verify that it is unique (db index) and complies with any business language rules (profanity/spam/scam).

Custom Domain

This option allows a customer to use a domain they own to host content managed by your SaaS software.

The customer needs to tell us the domain they want to use (CustomDomain field) and we will tell them what value to set in their TXT record to verify that they are in control of that domain (DomainVerificationValue field).

The main setup step is that the customer has to add two DNS records. One of the records should be a TXT used for domain verification, the other is an A/CNAME to actually point their domain at your servers.

If the domain they are wanting to use is an apex domain, without a subdomain, they will need to add an A record. If the domain they want to use includes a subdomain, they can use an A record or a CNAME that you are able to manage for them. For simplicity, it is acceptable to only offer the A record instructions.

Domains start in a pending state, and certifications wont be provisioned until domain verification is complete.

SaaS Side

The owner of the SaaS software will need to set up their own DNS records so that traffic is properly routed. We will assume that you have a server with a static ip, hosting a go application that supports on-the-fly TLS certificate provisioning.

You will need a wildcard record for all of your customers using Managed Subdomains, and optionally a CNAME record if you want to offer that setup method for Custom Domains.

For Your SaaS

Lets work together to build this for your SaaS!