HHelpNest/Self-Hosting/Custom Domain Setup
GitHubDashboardDEMO
Self-Hostingยท1 min read

Custom Domain Setup

H
HiยทMarch 10, 2026

You can serve your help center on a custom domain like help.yourcompany.com.

Option 1 โ€” Subdomain (recommended)

  1. Add a CNAME record pointing help.yourcompany.com to your server's IP address.

  2. In your HelpNest dashboard, go to Settings and enter help.yourcompany.com in the Custom Domain field.

  3. 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?

Related articles

Docker Compose Deployment

Need more help?

Can't find what you're looking for?

Browse all articles

On this page

Option 1 โ€” Subdomain (recommended)Option 2 โ€” Path prefixSSL