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
37 changes: 37 additions & 0 deletions flowtag.dev.status-page-apex.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"providerId": "flowtag.dev",
"providerName": "Flowtag",
"serviceId": "status-page-apex",
"serviceName": "Flowtag Status Page (Apex)",
"version": 1,
"logoUrl": "https://flowtag.dev/icon.svg",
"description": "Connect a root/apex domain (e.g. example.com) to a Flowtag status page using A and AAAA records.",
"variableDescription": "verify-token is the per-status-page ownership token. ipv4 and ipv6 are Flowtag status page anycast addresses.",
"syncPubKeyDomain": "domainconnect.flowtagservices.com",
"syncRedirectDomain": "flowtag.dev",
"records": [
{
"type": "TXT",
"groupId": "verification",
"host": "__flowtag",
"data": "flowtag-verify=%verify-token%",
"ttl": 600,
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "flowtag-verify="
},
{
"type": "A",
"groupId": "a",
"host": "@",
"pointsTo": "%ipv4%",
"ttl": 600
},
{
"type": "AAAA",
"groupId": "aaaa",
"host": "@",
"pointsTo": "%ipv6%",
"ttl": 600
}
]
}
45 changes: 45 additions & 0 deletions flowtag.dev.status-page-subdomain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"providerId": "flowtag.dev",
"providerName": "Flowtag",
"serviceId": "status-page-subdomain",
"serviceName": "Flowtag Status Page (Subdomain)",
"version": 1,
"logoUrl": "https://flowtag.dev/icon.svg",
"description": "Connect a subdomain (e.g. status.example.com) to a Flowtag status page.",
"variableDescription": "verify-token is the per-status-page ownership token. ipv4 and ipv6 are Flowtag status page anycast addresses when using A/AAAA routing instead of CNAME.",
"syncPubKeyDomain": "domainconnect.flowtagservices.com",
"syncRedirectDomain": "flowtag.dev",
"hostRequired": true,
"records": [
{
"type": "TXT",
"groupId": "verification",
"host": "__flowtag",
"data": "flowtag-verify=%verify-token%",
"ttl": 600,
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "flowtag-verify="
},
{
"type": "CNAME",
"groupId": "cname",
"host": "@",
"pointsTo": "status.flowtagservices.com",
"ttl": 600
},
{
"type": "A",
"groupId": "a",
"host": "@",
"pointsTo": "%ipv4%",
"ttl": 600
},
{
"type": "AAAA",
"groupId": "aaaa",
"host": "@",
"pointsTo": "%ipv6%",
"ttl": 600
}
]
}
Loading