๐ŸŸข Network Status| First month from $2.00 โ€” fully managed | Contact Support
Skip to content
Need help? Real engineers available 24/7. Average response under 15 minutes. Open a support ticket โ†’

Domain & DNS Configuration in Webuzo โ€‹

Adding a domain โ€‹

  1. Log into the Webuzo Enduser Panel (https://YOUR_IP:2002).
  2. Go to Domains โ†’ Add Domain.
  3. Enter the domain name.
  4. Set the document root path โ€” the directory where website files will live (e.g. /home/username/public_html/yourdomain.com).
  5. Click Add.

The domain is now configured in the web server. Point your domain's DNS A record to your server IP for visitors to reach it.

Adding a subdomain โ€‹

  1. Domains โ†’ Add Subdomain
  2. Enter the subdomain prefix (e.g. shop for shop.yourdomain.com)
  3. Select the parent domain
  4. Set the document root
  5. Click Add

Domain aliases (parked domains) โ€‹

A parked domain serves the same content as your primary domain:

  1. Domains โ†’ Add Domain Alias
  2. Enter the alias domain
  3. Select the primary domain it should point to
  4. Save

DNS management โ€‹

Webuzo includes a basic DNS manager for domains hosted on the server:

  1. Domains โ†’ DNS Manager
  2. Select the domain
  3. Add, edit, or delete records

Common records:

TypeNameValueUse
A@Server IPPoint root domain
AwwwServer IPPoint www
AmailServer IPMail server
MX@mail.yourdomain.comEmail routing
TXT@SPF recordEmail authentication
CNAMEsubdomainotherdomain.comSubdomain alias

Redirects โ€‹

To redirect one URL to another:

  1. Domains โ†’ URL Redirects โ†’ Add Redirect
  2. Enter source URL and destination URL
  3. Select redirect type: 301 (permanent) or 302 (temporary)
  4. Click Add

Force HTTPS โ€‹

After installing an SSL certificate, redirect HTTP to HTTPS:

Add to .htaccess in your document root:

apache
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Managed hosting that actually manages.