Attach custom domains to your apps with automatic HTTPS certificates.

How It Works

  1. You add a domain to your app via the API or dashboard
  2. Uncloud creates an Ingress rule in Kubernetes
  3. cert-manager provisions a TLS certificate from Let’s Encrypt
  4. Traffic is routed to your app over HTTPS

Prerequisites

  • cert-manager installed on the cluster
  • cert_manager_cluster_issuer configured in config.yaml
  • Port 80 and 443 accessible from the internet

Step 1: Add the Domain

Step 2: Configure DNS

Add a DNS record pointing your domain to the cluster: Option A: CNAME Record (recommended) Option B: A Record

Step 3: Verify

Once DNS propagates (usually 1-5 minutes), cert-manager automatically provisions a TLS certificate. Your app is now accessible at https://api.example.com.

Default Subdomains

Every app automatically gets a subdomain under the configured base_domain:
For example:
  • App name: my-apimy-api.go4.site
  • App name: frontendfrontend.go4.site
These subdomains use the wildcard TLS certificate configured in default_tls_secret_name.

Multiple Domains

You can attach multiple domains to a single app:

Remove a Domain

Configuration

The TLS configuration is defined in config.yaml: