Files
kaitranntt b84fdcf19e feat(worker): configure production routes for ccs.kaitran.ca
- add routes for /install* and /uninstall* paths
- configure worker to intercept specific paths on ccs.kaitran.ca
- pass through other paths to Vercel origin (landing page)
2025-11-04 12:42:53 -05:00

16 lines
514 B
TOML

name = "ccs-installer"
main = "worker.js"
compatibility_date = "2025-11-02"
workers_dev = true
# CloudFlare Worker configuration for CCS installer
# This worker serves platform-specific installation scripts
# Production routes on ccs.kaitran.ca
# Worker intercepts /install* and /uninstall* paths
# All other paths pass through to Vercel origin (landing page)
routes = [
{ pattern = "ccs.kaitran.ca/install*", zone_name = "kaitran.ca" },
{ pattern = "ccs.kaitran.ca/uninstall*", zone_name = "kaitran.ca" }
]