Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tenbyte.io/llms.txt

Use this file to discover all available pages before exploring further.

The Overview tab is your at-a-glance status for a single distribution: hostname, current state, when it was created, and basic config you can edit in place.

Open the distribution

From the CDN workspace, click Action → Manage on the row for your distribution.
Manage your Distribution
The detail dashboard opens. Pick Overview in the left sidebar.
CDN Distribution Dashboard

Distribution details

CDN Distribution Details
FieldWhat it means
DomainThe CDN hostname (system-generated or your custom one). Click Copy Domain to copy.
StatusLifecycle state — see the table below.
Created OnDistribution creation timestamp.
Last ModifiedTimestamp of the most recent config change (cache rules, headers, origin, etc.).

Status values

StatusMeaningAction
ProvisioningEdge config is rolling out.Wait — usually under a minute. Don’t switch DNS yet.
DeployedActive everywhere.Safe to send traffic.
UpdatingA config change is propagating.Existing traffic is unaffected.
DisabledDistribution is paused.The hostname returns 503 until re-enabled.

Configuration

CDN Distribution Configuration
FieldNotes
Distribution NameInternal label. Changing this does not affect the public hostname.
DescriptionFree-text. Use it for owner / team / runbook links.

Inspect via API

curl -sS "https://api.tenbyte.io/cdn/distributions/$DISTRIBUTION_ID" \
  -H "Authorization: Bearer $TENBYTE_API_TOKEN" | jq '{name, domain, status, last_modified}'
Expected:
{
  "name": "prod-web",
  "domain": "your-distribution.tenbytecdn.com",
  "status": "Deployed",
  "last_modified": "2026-05-09T10:42:11Z"
}
Wire this into a healthcheck so deploys block on Deployed.

Quick health checks

# 1. Edge reachable?
curl -sSI "https://$CDN_HOST/" | head -1

# 2. TLS valid?
openssl s_client -connect "$CDN_HOST:443" -servername "$CDN_HOST" </dev/null \
  2>/dev/null | openssl x509 -noout -subject -dates

# 3. HTTP/2 / HTTP/3 negotiated?
curl -sS --http2 -o /dev/null -w '%{http_version}\n' "https://$CDN_HOST/"
See SSL and Headers for tuning.