Zillapage
  • How to install
  • Setup and Config App
    • Setup Sub-domain
    • Setup Custom-domain
    • Setup send Email
    • Change brandname and logo
  • Frequently Asked Questions
    • Which hosting should I use?
    • How to upgrade?
    • What about license?
    • Versions: Change log
    • Install module
    • How to add a new template?
Powered by GitBook
On this page
  • STEP 1: Customer save custom-domain in landing page
  • STEP 2: Customer add a DNS record on their domain
  • STEP 3: Admin add new add-on domain with customer domain on cpanel

Was this helpful?

  1. Setup and Config App

Setup Custom-domain

This document guides you through setting up subdomains for customer landing page

PreviousSetup Sub-domainNextSetup send Email

Last updated 4 years ago

Was this helpful?

STEP 1: Customer save custom-domain in landing page

STEP 2: Customer add a DNS record on their domain

STEP 3: Admin add new add-on domain with customer domain on cpanel

You can skip to step 3 with a VPS (Apache)

Config your VPS Apache with this VirtualHost. ( Change your domain yourdomain.com and your app path: /var/www/your_app_path)

<VirtualHost *:80>
    #ServerAdmin admin@admin.com
    ServerName yourdomain.com
    ServerAlias *
    DocumentRoot /var/www/your_app_path
    
    <Directory /var/www/your_app_path>
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
    </Directory>
</VirtualHost>