Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions dodomain.io.custom-subdomain-cname.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"providerId": "dodomain.io",
"providerName": "DoDomain",
"serviceId": "custom-subdomain-cname",
"serviceName": "Custom domain (CNAME)",
"version": 1,
"description": "Points one subdomain at a SaaS product via a single CNAME. Used by DoDomain (domain-connect-as-a-service) on behalf of its integrator applications; the CNAME target is the only variable.",
"variableDescription": "target = the CNAME destination host provided by the integrator application (e.g. cname.integrator-app.com).",
"syncBlock": false,
"hostRequired": true,
"syncPubKeyDomain": "_dckeys.dodomain.io",
"syncRedirectDomain": "app.dodomain.io",
"records": [
{
"type": "CNAME",
"groupId": "connect",
"host": "@",
"pointsTo": "%target%",
"ttl": 3600
}
]
}
24 changes: 24 additions & 0 deletions dodomain.io.domain-verification.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"providerId": "dodomain.io",
"providerName": "DoDomain",
"serviceId": "domain-verification",
"serviceName": "Domain ownership verification (TXT)",
"version": 1,
"description": "Proves domain ownership to a SaaS product with a single constrained TXT record at a fixed host. The value is always prefixed dodomain-verify=; only the token is variable.",
"variableDescription": "token = the opaque verification token minted by DoDomain for this connect session.",
"syncBlock": false,
"hostRequired": false,
"syncPubKeyDomain": "_dckeys.dodomain.io",
"syncRedirectDomain": "app.dodomain.io",
"records": [
{
"type": "TXT",
"groupId": "verify",
"host": "_dodomain-challenge",
"data": "dodomain-verify=%token%",
"ttl": 3600,
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "dodomain-verify="
}
]
}
Loading