$npx -y skills add ominou5/funnel-architect-plugin --skill dns-managementGuides users through DNS configuration for custom funnel domains. Covers A/CNAME records, SSL setup, and platform-specific DNS requirements.
| 1 | # DNS Management |
| 2 | |
| 3 | ## Common DNS Setup Patterns |
| 4 | |
| 5 | ### Netlify |
| 6 | ``` |
| 7 | Type: CNAME |
| 8 | Name: @ (or www) |
| 9 | Value: [site-name].netlify.app |
| 10 | TTL: Auto |
| 11 | ``` |
| 12 | |
| 13 | ### Vercel |
| 14 | ``` |
| 15 | Type: A |
| 16 | Name: @ |
| 17 | Value: 76.76.21.21 |
| 18 | |
| 19 | Type: CNAME |
| 20 | Name: www |
| 21 | Value: cname.vercel-dns.com |
| 22 | TTL: Auto |
| 23 | ``` |
| 24 | |
| 25 | ### Cloudflare Pages |
| 26 | ``` |
| 27 | Type: CNAME |
| 28 | Name: @ |
| 29 | Value: [project-name].pages.dev |
| 30 | TTL: Auto |
| 31 | ``` |
| 32 | |
| 33 | ## DNS Providers Quick Reference |
| 34 | |
| 35 | | Provider | Dashboard URL | Propagation | |
| 36 | |---|---|---| |
| 37 | | Cloudflare | dash.cloudflare.com | Instant (proxied) | |
| 38 | | Namecheap | ap.www.namecheap.com | 1–24 hours | |
| 39 | | GoDaddy | dcc.godaddy.com | 1–24 hours | |
| 40 | | Google Domains | domains.google.com | 1–48 hours | |
| 41 | | Route 53 (AWS) | console.aws.amazon.com/route53 | 1–24 hours | |
| 42 | |
| 43 | ## SSL/TLS |
| 44 | - **Netlify**: Automatic Let's Encrypt (free) |
| 45 | - **Vercel**: Automatic (free) |
| 46 | - **Cloudflare**: Universal SSL (free, edge-only) or Full SSL (end-to-end) |
| 47 | |
| 48 | ## www vs non-www |
| 49 | Pick one and redirect the other: |
| 50 | - Set primary domain (e.g., `example.com`) |
| 51 | - Add redirect: `www.example.com → example.com` (301) |
| 52 | - Configure in hosting platform's redirect settings |
| 53 | |
| 54 | ## Verification |
| 55 | ```bash |
| 56 | # Check DNS propagation |
| 57 | dig example.com +short |
| 58 | |
| 59 | # Check if SSL is active |
| 60 | curl -I https://example.com |
| 61 | |
| 62 | # Check redirect |
| 63 | curl -I http://www.example.com |
| 64 | ``` |
| 65 | |
| 66 | ## Troubleshooting |
| 67 | - **DNS not propagating**: Wait 24–48 hours, or flush local DNS cache |
| 68 | - **SSL not working**: Ensure DNS points to hosting provider, not old server |
| 69 | - **Mixed content**: Update all internal links to use `https://` |