mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 09:37:55 -05:00
66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
# 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-operating-system-production.up.railway.app"
|
|
value: "YOUR-PROD-RAILWAY-APP.up.railway.app" # replace with your Railway host
|
|
notes: "Alternative subdomain alias for the OS application"
|
|
|
|
- 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.
|