> For the complete documentation index, see [llms.txt](https://docs.zillapage.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zillapage.com/install-and-setup/setup-custom-domain.md).

# Setup Custom-domain

### **STEP 1: Customer** save custom-domain in landing page

![](/files/-MYD7-lHPMoJPQZMTKDd)

### **STEP 2: Customer** add a DNS record on their domain

![](/files/-MYD733E0I4kKFbUKv5K)

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

![](/files/-MYD74UZrKupQJrfB1FU)

> 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>
```
