Create domain registry configAdd ops/domains.yaml configuration for domain orchestratoruration in domains.yaml

Added configuration for multiple domains with forwarding and DNS settings.Initial universal domain orchestrator configuration: specify forwarding and DNS settings for blackroad domains and subdomains.
This commit is contained in:
Alexa Amundson
2025-11-16 22:35:08 -06:00
committed by GitHub
parent 13e554f11e
commit 4f9b578317

53
ops/domains.yaml Normal file
View File

@@ -0,0 +1,53 @@
# Universal domain registry configuration
# Each entry describes how a domain or subdomain should be handled.
# Supported providers: "godaddy", "cloudflare"
# Supported modes:
# - forward: use registrar forwarding (HTTPS 301)
# - dns: set DNS records (CNAME or A)
domains:
- name: "blackroad.systems"
type: "root"
provider: "godaddy"
mode: "forward"
forward_to: "https://os.blackroad.systems"
forwarding_type: 301
- name: "www.blackroad.systems"
type: "subdomain"
provider: "godaddy"
mode: "forward"
forward_to: "https://os.blackroad.systems"
forwarding_type: 301
- name: "os.blackroad.systems"
type: "subdomain"
provider: "godaddy"
mode: "dns"
record:
type: "CNAME"
value: "YOUR-PROD-RAILWAY-APP.up.railway.app" # replace with your Railway host
- name: "blackroad.ai"
type: "root"
provider: "cloudflare"
mode: "dns"
record:
type: "CNAME"
value: "os.blackroad.systems"
- name: "roadwallet.com"
type: "root"
provider: "cloudflare"
mode: "dns"
record:
type: "CNAME"
value: "os.blackroad.systems"
- name: "aliceos.io"
type: "root"
provider: "cloudflare"
mode: "dns"
record:
type: "CNAME"
value: "os.blackroad.systems"