Domains¶
Purpose¶
Every custom domain/route this repository configures, verified against each wrangler.jsonc's
routes block directly.
The 8 routes¶
| Domain | Worker | wrangler.jsonc |
|---|---|---|
akshayagroupglobal.com |
akshaya-group-global |
apps/corporate-web/wrangler.jsonc |
software.akshayagroupglobal.com |
akshaya-software |
apps/software-web/wrangler.jsonc |
logistics.akshayagroupglobal.com |
akshaya-logistics |
apps/logistics-web/wrangler.jsonc |
commerce.akshayagroupglobal.com |
akshaya-commerce |
apps/commerce-web/wrangler.jsonc |
embroidery.akshayagroupglobal.com |
akshaya-embroidery |
apps/embroidery-web/wrangler.jsonc |
admin.akshayagroupglobal.com |
akshaya-admin |
apps/admin-web/wrangler.jsonc |
investors.akshayagroupglobal.com |
akshaya-investors |
apps/investors-web/wrangler.jsonc |
api.akshayagroupglobal.com |
akshaya-group-global-api |
workers/api/wrangler.jsonc |
Every entry uses "custom_domain": true (Cloudflare's managed custom-domain feature, not a raw
routes pattern with a separately-managed DNS record) - { "pattern": "<domain>",
"custom_domain": true }.
What this portal will never do¶
Per explicit instruction, no command in this portal - and no command this portal's author has run
- creates, modifies, or deletes any of these 8 domains/routes, or any DNS record behind them. Zone
management (WAF/SSL settings) is a separate, zone-wide concern (cloudflare dashboard, not
per-app) - not something any wrangler.jsonc in this repo touches.
How a domain gets attached (for reference only - not executed by this portal)¶
custom_domain: true routes are provisioned by Cloudflare when a Worker is first deployed with
that route present, provided the zone (akshayagroupglobal.com) is already on the same
Cloudflare account - see infrastructure/cloudflare/README.md §"One-time bootstrap" step 1
("Authenticate Wrangler with an account that owns akshayagroupglobal.com").
Troubleshooting¶
| Symptom | Likely cause |
|---|---|
wrangler deploy succeeds but the domain 404s/serves nothing |
The zone isn't on the account Wrangler is authenticated against - see Wrangler "Which account am I on?" |
| Domain serves an old deploy | Edge cache, or check you deployed the right app's wrangler.jsonc - the domain-to-app mapping is the table above, not alphabetical/positional |