Setup Custom-domain
This document guides you through setting up subdomains for customer landing page



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 [email protected]
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>