# 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: # Primary domain: blackroad.systems serves the main application - name: "blackroad.systems" type: "root" provider: "godaddy" mode: "dns" record: type: "CNAME" value: "YOUR-PROD-RAILWAY-APP.up.railway.app" # replace with your Railway host notes: "Main flagship corporate site - serves BlackRoad OS application directly" # www subdomain redirects to apex domain - name: "www.blackroad.systems" type: "subdomain" provider: "godaddy" mode: "forward" forward_to: "https://blackroad.systems" forwarding_type: 301 notes: "Redirects to canonical apex domain" # os subdomain can be used as an alias - name: "os.blackroad.systems" type: "subdomain" provider: "godaddy" mode: "dns" record: type: "CNAME" value: "blackroad-os-core-production.up.railway.app" # Core API satellite service notes: "Alternative subdomain alias for the OS application - points to Core API satellite" - 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" # Add additional domains or subdomains here following the same pattern. # By default you can set mode: "dns" with a CNAME pointing to os.blackroad.systems, # or override as needed.