Skip to content
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
913e3a9
Add initial configuration for AliceMagic Launcher
aomkoyo Nov 14, 2025
6935f1e
Rename launcher configuration file
aomkoyo Nov 14, 2025
430a7c2
Fix host key in alicemagic_launcher configuration
aomkoyo Nov 14, 2025
d601c54
Update furimoe.alicemagic_launcher.json
aomkoyo Nov 14, 2025
5fff555
Rename furimoe.alicemagic_launcher.json to furimoe.alicemagiclauncher…
aomkoyo Nov 14, 2025
367bfb7
Merge branch 'master' into master
aomkoyo Nov 18, 2025
ac7dcee
Merge branch 'Domain-Connect:master' into master
aomkoyo Nov 20, 2025
9a9ff7b
Merge branch 'Domain-Connect:master' into master
aomkoyo Nov 22, 2025
c9dcfb3
Update DNS configuration in JSON file
aomkoyo Nov 22, 2025
2a98afd
Update furimoe.alicemagiclauncher.json
aomkoyo Nov 22, 2025
562dd86
Merge branch 'Domain-Connect:master' into master
aomkoyo Dec 27, 2025
8023920
Update service details for Alice Magic Launcher
aomkoyo Dec 27, 2025
97626f7
Merge branch 'Domain-Connect:master' into master
aomkoyo Jan 5, 2026
36b8c51
Update providerId to include domain
aomkoyo Jan 5, 2026
a5bc79d
Merge branch 'Domain-Connect:master' into master
aomkoyo Jan 16, 2026
b76d5d5
Added Furimoe Domain Verification
aomkoyo Jan 16, 2026
d38199f
Update domain verification JSON structure
aomkoyo Jan 16, 2026
7e22601
Merge branch 'Domain-Connect:master' into master
aomkoyo Jan 16, 2026
f134459
Merge branch 'Domain-Connect:master' into master
aomkoyo Feb 11, 2026
0e4ac8b
Add groupId to DNS records for verification
aomkoyo Feb 11, 2026
27368fe
Update groupId for CNAME record in JSON
aomkoyo Feb 11, 2026
6038be8
Update version and TTL values in domain verification JSON
aomkoyo Feb 11, 2026
1184396
Update groupId from 'sub' to 'subdomain'
aomkoyo Feb 11, 2026
80176a3
Merge branch 'master' into master
pawel-kow Mar 4, 2026
2f18d39
Merge branch 'master' into master
pawel-kow Mar 5, 2026
ef829b3
Merge branch 'master' into master
pawel-kow Mar 6, 2026
b805cab
Merge branch 'master' into master
aomkoyo Apr 4, 2026
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
21 changes: 18 additions & 3 deletions furimoe.com.domain-verification.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,32 @@
"providerName": "Furimoe",
"serviceId": "domain-verification",
"serviceName": "Domain Verification",
"version": 3,
"version": 4,
"description": "Enables a domain to work with Furimoe via IETF BCP Standard",
"variableDescription": "Unique verification code provided for purpose of verification",
"syncPubKeyDomain": "keys.furimoe.com",
"syncRedirectDomain": "furimoe.com",
"records": [
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you switch to this model because the verification RR always on apex, consider setting multiInstance unless it's ok to have it applied only once for a domain and any subdomain.

{
"type": "TXT",
"host": "_furimoe-challenge",
"groupId": "subdomain-verification",
"host": "_furimoe-challenge",
"data": "token=%verifytxt%",
"ttl": 60
"ttl": 300
},
{
"type": "CNAME",
"groupId": "subdomain",
"host": "%subdomain%",
"pointsTo": "%cname%",
"ttl": 600
},
{
"type": "A",
"groupId": "apex",
"host": "@",
"pointsTo": "%ip%",
"ttl": 600
}
]
}
Loading