mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
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:
53
ops/domains.yaml
Normal file
53
ops/domains.yaml
Normal 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"
|
||||
Reference in New Issue
Block a user