RemarkableCloud

Domain & DNS Configuration in Webuzo

How to add domains, configure subdomains, and manage DNS records in Webuzo.

Adding a domain

  • Log into the Webuzo Enduser Panel (https://YOUR_IP:2002).
  • Go to Domains → Add Domain.
  • Enter the domain name.
  • Set the document root path: the directory where website files will live (e.g. /home/username/public_html/yourdomain.com).
  • 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:

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    Still stuck? Ask a human, we answer in minutes.