Custom Domain Setup
H
HiยทMarch 10, 2026You can serve your help center on a custom domain like help.yourcompany.com.
Option 1 โ Subdomain (recommended)
Add a CNAME record pointing
help.yourcompany.comto your server's IP address.In your HelpNest dashboard, go to Settings and enter
help.yourcompany.comin the Custom Domain field.Set up a reverse proxy to forward requests to the HelpNest app.
Example nginx config:
server {
server_name help.yourcompany.com;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}Option 2 โ Path prefix
If you want yourcompany.com/help, proxy all /help requests to the HelpNest app.
SSL
Use Certbot with Let's Encrypt for free SSL certificates, or use Caddy which handles SSL automatically.
Was this article helpful?