When using EvaluationsHub, you can provide your customers or team members with a branded custom subdomain, such as feedback.company.com
or www.feedback.company.com
, instead of the default company.evaluationshub.co
. This setup ensures your portal is aligned with your company’s branding, giving a professional and seamless user experience.
The subdomain on the EvaluationsHub platform (e.g., company.evaluationshub.co
) is selected by the admin during the registration process. This guide will show you how to map your custom subdomain to your EvaluationsHub subdomain while keeping your custom URL (e.g., feedback.company.com
) visible in the browser.
When you register your company on EvaluationsHub, you are prompted to choose your unique subdomain. For example:
company.evaluationshub.co
.Note: If you need to change your EvaluationsHub subdomain later, please contact our support team.
Decide on the subdomain you want to use on your own company’s domain. Examples include:
feedback.company.com
www.feedback.company.com
This will be the custom-branded URL your users will see in the browser.
Locate the CNAME Section:
Look for an option to add a new DNS record.
Create a New CNAME Record:
feedback
or www.feedback
).company.evaluationshub.co
).Save the Record:
Once you save, DNS propagation can take a few minutes to a few hours (typically within 1–4 hours).
Without additional configuration, visitors to your custom subdomain will be redirected to company.evaluationshub.co
, and they’ll see this URL in the browser. To keep your custom subdomain (e.g., feedback.company.com
) visible in the browser, you’ll need to configure a reverse proxy on your web server.
/etc/nginx/sites-available/feedback.company.com
).nginxserver { listen 80; server_name feedback.company.com; location / { proxy_pass https://company.evaluationshub.co; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }
bashsudo nginx -t
bash
sudo systemctl reload nginx
apache<VirtualHost *:80> ServerName feedback.company.com ProxyPreserveHost On ProxyPass / https://company.evaluationshub.co/ ProxyPassReverse / https://company.evaluationshub.co/ </VirtualHost>
bashsudo a2enmod proxy sudo a2enmod proxy_http sudo systemctl restart apache2
feedback.company.com
(or www.feedback.company.com
).You select your EvaluationsHub subdomain (e.g., company.evaluationshub.co
) during the registration process. This subdomain will act as the base for your portal. If you need to change it later, contact our support team.
The CNAME record ensures that your custom subdomain (feedback.company.com
) points to your EvaluationsHub portal (company.evaluationshub.co
).
Without a reverse proxy, users will see company.evaluationshub.co
in their browser when they visit your portal. The reverse proxy keeps your custom subdomain visible, maintaining your branding.
If you don’t manage your own web server, contact your IT team or hosting provider. Alternatively, use a managed DNS service like Cloudflare, which can handle this setup for you.
Yes! If you’re unsure about any step, feel free to contact our support team. We’ll guide you through the process or coordinate with your IT team.