DNS Settings
DNS records control how your domain behaves — where your website points, where e-mail goes, and other services. CoreSynth web hosting uses server webhosting.coresynth.io.
Overview
| Feature | Details |
|---|---|
| Webhosting server | webhosting.coresynth.io |
| DNS propagation | 5 minutes to 48 hours |
| Automatic DNS | Recommended |
DNS Record Types
CNAME record (recommended)
CNAME redirects one domain to another.
| Host | Type | Value |
|---|---|---|
| www | CNAME | webhosting.coresynth.io |
| @ | CNAME | webhosting.coresynth.io |
Advantages:
- Automatically updates when IP changes
- Simpler management
A record (alternative)
A record points a domain directly to an IP address.
| Host | Type | Value |
|---|---|---|
| @ | A | [server IP address] |
| www | A | [server IP address] |
Note: Server IP address is in your welcome e-mail or in your dashboard.
E-mail Records
MX record
MX record specifies where e-mail for your domain should be delivered.
| Host | Priority | Type | Value |
|---|---|---|---|
| @ | 10 | MX | webhosting.coresynth.io |
SPF record
SPF record specifies which servers can send e-mail from your domain.
| Host | Type | Value |
|---|---|---|
| @ | TXT | v=spf1 a mx ~all |
Value explanation:
v=spf1— SPF versiona— allow sender’s A recordmx— allow MX servers~all— softfail (mark invalid e-mails, don’t reject)
Managing DNS in Panel
CoreSynth panel allows full DNS record management directly in the interface.
Creating DNS Zone
- Log in to CoreSynth Dashboard
- Go to Web Hosting
- Select your hosting package
- Click DNS in sidebar
- Click Create DNS Zone
- Enter domain and IP address
- Set nameservers:
ns1.coresynth.io
ns2.coresynth.io- Click Create
Note: DNS zone is automatically created when adding a domain with automatic DNS enabled.
Adding DNS Record
- In DNS zones list click on domain
- Click Add Record
- Fill in:
| Field | Description |
|---|---|
| Type | A, AAAA, CNAME, MX, TXT, NS, SRV |
| Name | Host (e.g. www, @, mail) |
| Value | IP address or target |
| TTL | Time to Live (default 3600) |
| Priority | For MX and SRV only |
- Click Save
Record Types
| Type | Usage |
|---|---|
| A | Domain → IPv4 address |
| AAAA | Domain → IPv6 address |
| CNAME | Domain → another domain |
| MX | E-mail → mail server |
| TXT | Text records (SPF, DKIM) |
| NS | Nameservers |
| SRV | Services (VoIP, IM) |
Editing Record
- In records list click Edit
- Change values
- Click Save
Deleting Record
- In records list click Delete
- Confirm deletion
Deleting DNS Zone
Warning: Deleting DNS zone removes all DNS records for the domain.
- In DNS zones list click Delete Zone
- Confirm deletion
Example Setup
Basic Web Hosting
Type Name Value TTL
A @ [server IP address] 3600
CNAME www @ 3600
MX @ webhosting.coresynth.io 3600 10
TXT @ v=spf1 a mx ~all 3600With E-mail
Type Name Value TTL
A @ [server IP address] 3600
CNAME www @ 3600
MX @ webhosting.coresynth.io 3600 10
TXT @ v=spf1 a mx ~all 3600
TXT default._domainkey [DKIM key] 3600With Subdomains
Type Name Value TTL
A @ [server IP address] 3600
CNAME www @ 3600
A blog [server IP address] 3600
A shop [server IP address] 3600DNS Setup at Registrar
If not using CoreSynth nameservers, configure DNS records at your domain registrar.
Option 1 — Nameservers (Recommended)
Set nameservers at registrar:
ns1.coresynth.io
ns2.coresynth.ioThen manage DNS records in CoreSynth panel.
Option 2 — External DNS
If using external DNS provider, add records:
| Type | Host | Value |
|---|---|---|
| A | @ | [server IP address] |
| CNAME | www | webhosting.coresynth.io |
| MX | @ | webhosting.coresynth.io |
| TXT | @ | v=spf1 a mx ~all |
Note: Server IP address is in your welcome e-mail or dashboard.
How to Change DNS at Registrar
- Log in to your domain registrar
- Navigate to domain management
- Find Nameservers or DNS section
- Change nameservers to CoreSynth or add records
- Save changes
Note: Propagation may take up to 48 hours.
Using Proxy (Cloudflare, etc.)
If using DNS proxy like Cloudflare:
- Set SSL mode to Full or Full Strict
- For SSL issues, temporarily disable proxy
- Ensure DNS records point to correct IPs
Verifying DNS
Online tools
- dnschecker.org — global DNS check
- whatismyip.com — DNS lookup
Command line
# Check A record
nslookup your-domain.com
# Check MX record
nslookup -type=MX your-domain.com
# Check SPF record
nslookup -type=TXT your-domain.comDNS Propagation
DNS changes do not take effect immediately. Different networks update cache at different intervals.
| Time | Probability |
|---|---|
| 5 minutes | 10 % |
| 1 hour | 40 % |
| 6 hours | 70 % |
| 24 hours | 90 % |
| 48 hours | 98 % |
Note: If website is not working after 48 hours, check DNS settings at your registrar.
Troubleshooting
Page not displaying
Cause: Incorrect A record or DNS not yet propagated.
Solution:
- Verify A record at dnschecker.org
- Check A record points to correct IP
- Wait for full propagation (up to 48 hours)
SSL not working
Cause: Cloudflare proxy blocking SSL verification.
Solution:
- In Cloudflare, go to SSL/TLS → Overview
- Change mode to Full or Full strict
- Temporarily disable proxy (orange cloud → grey cloud)
E-mails not arriving
Cause: Incorrect MX record or SPF settings.
Solution:
- Verify MX record:
nslookup -type=MX your-domain.com - Add or correct SPF record
- Check SPAM folder
Next Steps
- Web Hosting — Full hosting overview
- Domains — Domain management
- Databases — MySQL and PostgreSQL
Need help? Open a support ticket or ask Alex in your dashboard.