Find us on social media
Configure your domain in cPanel
Point DNS, add domain in cPanel and verify propagation for your website.
Overview
To use your domain with Baires Host web hosting, you need to point your DNS records to our servers and add the domain in cPanel.
Step 1: Update nameservers at your registrar
Log in to your domain registrar (GoDaddy, Namecheap, NIC Argentina, etc.) and set the nameservers to:
ns1.baires.host
ns2.baires.hostAlternatively, if you want to keep your current DNS provider, create A records instead.
Step 2: Configure A records (alternative to nameservers)
If you prefer to manage DNS externally, create these records:
| Type | Name | Value | TTL |
|---|---|---|---|
| A | @ | YOUR_SERVER_IP | 3600 |
| A | www | YOUR_SERVER_IP | 3600 |
| CNAME | yourdomain.com | 3600 | |
| MX | @ | yourdomain.com | 3600 (priority 0) |
Your server IP is available in the Baires Host client area under your hosting service details.
Step 3: Add domain in cPanel
- Log in to cPanel (your welcome email contains the URL and credentials)
- Navigate to Domains → Domains
- Click Create A New Domain
- Enter your domain name
- Set the document root (default:
/home/user/public_html/yourdomain.com) - Click Submit
Step 4: Verify DNS propagation
DNS changes can take up to 48 hours to propagate globally, but usually complete within 1-4 hours.
Check propagation status:
# From your local machine
nslookup yourdomain.com
dig yourdomain.com +short
# Or use online tools like dnschecker.orgStep 5: Install SSL certificate
Once DNS is pointing to your server:
- In cPanel, go to Security → SSL/TLS Status
- Select your domain
- Click Run AutoSSL
- Wait a few minutes for the certificate to be issued
Alternatively, use the Let's Encrypt plugin if available:
- Go to Security → Let's Encrypt SSL
- Click Issue next to your domain
- Check both
yourdomain.comandwww.yourdomain.com
Step 6: Force HTTPS redirect
In cPanel, go to Domains → select your domain → enable Force HTTPS Redirect.
Or add to your .htaccess:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]Troubleshooting
- Domain not resolving: Wait for DNS propagation (check with
dig) - SSL not working: Ensure DNS is fully propagated before requesting SSL
- Wrong site showing: Verify the document root path in cPanel
- Email not working: Check MX records are properly configured
Multiple domains
You can host multiple domains on the same hosting plan:
- Add each domain in cPanel → Domains
- Each gets its own document root
- SSL certificates are issued per domain automatically